aboutsummaryrefslogtreecommitdiffhomepage
path: root/pronto-eslint_npm.gemspec
blob: 7f965c0f31dc074cb2a1e7903b2242ab1bf287b1 (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
# -*- encoding: utf-8 -*-

$LOAD_PATH.push File.expand_path('../lib', __FILE__)
require 'pronto/eslint_npm/version'

Gem::Specification.new do |s|
  s.name = 'pronto-eslint_npm'
  s.version = Pronto::ESLintNpmVersion::VERSION
  s.platform = Gem::Platform::RUBY
  s.authors = ['Markus Doits', 'Mindaugas MozĊĞras']
  s.email = 'markus.doits@gmail.com'
  s.homepage = 'http://github.org/doits/pronto-eslint_npm'
  s.summary = <<-EOF
    Pronto runner for ESLint, pluggable linting utility for JavaScript and JSX
  EOF

  s.licenses = ['MIT']
  s.required_ruby_version = '>= 2.0.0'
  s.rubygems_version = '1.8.23'

  s.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r{^(lib/|(LICENSE|README.md)$)}) }
  s.extra_rdoc_files = ['LICENSE', 'README.md']
  s.require_paths = ['lib']
  s.requirements << 'eslint (in PATH)'

  s.add_dependency('pronto', '~> 0.8.0')
  s.add_development_dependency('rake', '>= 11.0', '< 13')
  s.add_development_dependency('rspec', '~> 3.4')
end