aboutsummaryrefslogtreecommitdiffhomepage
path: root/pronto-eslint.gemspec
diff options
context:
space:
mode:
authorMindaugas Mozūras <mindaugas.mozuras@gmail.com>2016-02-28 17:27:46 +0200
committerMindaugas Mozūras <mindaugas.mozuras@gmail.com>2016-02-28 17:27:46 +0200
commitce89f9ed8a80a06d26b0618658733956d0c98f84 (patch)
tree4594dcd5b47b6469172d79f754cdadcb84660dfa /pronto-eslint.gemspec
downloadpronto-hlint-ce89f9ed8a80a06d26b0618658733956d0c98f84.tar.gz
pronto-hlint-ce89f9ed8a80a06d26b0618658733956d0c98f84.tar.zst
pronto-hlint-ce89f9ed8a80a06d26b0618658733956d0c98f84.zip
Initial commit
Diffstat (limited to 'pronto-eslint.gemspec')
-rw-r--r--pronto-eslint.gemspec42
1 files changed, 42 insertions, 0 deletions
diff --git a/pronto-eslint.gemspec b/pronto-eslint.gemspec
new file mode 100644
index 0000000..7a57560
--- /dev/null
+++ b/pronto-eslint.gemspec
@@ -0,0 +1,42 @@
1# -*- encoding: utf-8 -*-
2#
3$LOAD_PATH.push File.expand_path('../lib', __FILE__)
4require 'pronto/eslint/version'
5require 'English'
6
7Gem::Specification.new do |s|
8 s.name = 'pronto-eslint'
9 s.version = Pronto::ESLintVersion::VERSION
10 s.platform = Gem::Platform::RUBY
11 s.author = 'Mindaugas Mozūras'
12 s.email = 'mindaugas.mozuras@gmail.com'
13 s.homepage = 'http://github.org/mmozuras/pronto-eslintt'
14 s.summary = <<-EOF
15 Pronto runner for ESLint, pluggable linting utility for JavaScript and JSX
16 EOF
17
18 s.licenses = ['MIT']
19 s.required_ruby_version = '>= 1.9.3'
20 s.rubygems_version = '1.8.23'
21
22 s.files = `git ls-files`.split($RS).reject do |file|
23 file =~ %r{^(?:
24 spec/.*
25 |Gemfile
26 |Rakefile
27 |\.rspec
28 |\.gitignore
29 |\.rubocop.yml
30 |\.travis.yml
31 )$}x
32 end
33 s.test_files = []
34 s.extra_rdoc_files = ['LICENSE', 'README.md']
35 s.require_paths = ['lib']
36
37 s.add_dependency('pronto', '~> 0.5.0')
38 s.add_dependency('eslintrb', '~> 2.0.0')
39 s.add_development_dependency('rake', '~> 10.4')
40 s.add_development_dependency('rspec', '~> 3.3')
41 s.add_development_dependency('rspec-its', '~> 1.2')
42end