]> git.immae.eu Git - github/fretlink/pronto-hlint.git/blob - pronto-eslint.gemspec
Fix Rubocop warning about freezing strings
[github/fretlink/pronto-hlint.git] / pronto-eslint.gemspec
1 # -*- encoding: utf-8 -*-
2 #
3 $LOAD_PATH.push File.expand_path('../lib', __FILE__)
4 require 'pronto/eslint/version'
5 require 'English'
6
7 Gem::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')
42 end