-
Notifications
You must be signed in to change notification settings - Fork 49
/
pronto-eslint.gemspec
42 lines (37 loc) · 1.12 KB
/
pronto-eslint.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# -*- encoding: utf-8 -*-
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
require 'pronto/eslint/version'
require 'English'
Gem::Specification.new do |s|
s.name = 'pronto-eslint'
s.version = Pronto::ESLintVersion::VERSION
s.platform = Gem::Platform::RUBY
s.author = 'Mindaugas Mozūras'
s.email = 'mindaugas.mozuras@gmail.com'
s.homepage = 'http://github.com/mmozuras/pronto-eslint'
s.summary = <<-EOF
Pronto runner for ESLint, pluggable linting utility for JavaScript and JSX
EOF
s.licenses = ['MIT']
s.required_ruby_version = '>= 2.3.0'
s.rubygems_version = '1.8.23'
s.files = `git ls-files`.split($RS).reject do |file|
file =~ %r{^(?:
spec/.*
|Gemfile
|Rakefile
|\.rspec
|\.gitignore
|\.rubocop.yml
|\.travis.yml
)$}x
end
s.test_files = []
s.extra_rdoc_files = ['LICENSE', 'README.md']
s.require_paths = ['lib']
s.add_dependency('pronto', '~> 0.11.0')
s.add_dependency('eslintrb', '~> 2.0', '>= 2.0.0')
s.add_development_dependency('rake', '~> 12.0')
s.add_development_dependency('rspec', '~> 3.4')
s.add_development_dependency('rspec-its', '~> 1.2')
end