aboutsummaryrefslogtreecommitdiffhomepage
path: root/pronto-eslint.gemspec
blob: 7a575603ddaf071914aba43e12f64c0c271c2c5c (plain) (blame)
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.org/mmozuras/pronto-eslintt'
  s.summary = <<-EOF
    Pronto runner for ESLint, pluggable linting utility for JavaScript and JSX
  EOF

  s.licenses = ['MIT']
  s.required_ruby_version = '>= 1.9.3'
  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.5.0')
  s.add_dependency('eslintrb', '~> 2.0.0')
  s.add_development_dependency('rake', '~> 10.4')
  s.add_development_dependency('rspec', '~> 3.3')
  s.add_development_dependency('rspec-its', '~> 1.2')
end