]> git.immae.eu Git - github/fretlink/pronto-hlint.git/blame - pronto-eslint_npm.gemspec
Remove rake dependency
[github/fretlink/pronto-hlint.git] / pronto-eslint_npm.gemspec
CommitLineData
ce89f9ed 1# -*- encoding: utf-8 -*-
5001cb27 2
ce89f9ed 3$LOAD_PATH.push File.expand_path('../lib', __FILE__)
126fe1e2 4require 'pronto/eslint_npm/version'
ce89f9ed
MM
5
6Gem::Specification.new do |s|
126fe1e2 7 s.name = 'pronto-eslint_npm'
5001cb27 8 s.version = Pronto::ESLintNpmVersion::VERSION
ce89f9ed 9 s.platform = Gem::Platform::RUBY
5001cb27
MD
10 s.authors = ['Markus Doits', 'Mindaugas Mozūras']
11 s.email = 'markus.doits@gmail.com'
126fe1e2 12 s.homepage = 'http://github.org/doits/pronto-eslint_npm'
ce89f9ed
MM
13 s.summary = <<-EOF
14 Pronto runner for ESLint, pluggable linting utility for JavaScript and JSX
15 EOF
16
17 s.licenses = ['MIT']
0d6688dc 18 s.required_ruby_version = '>= 2.0.0'
ce89f9ed
MM
19 s.rubygems_version = '1.8.23'
20
3658504e 21 s.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
ce89f9ed
MM
22 s.extra_rdoc_files = ['LICENSE', 'README.md']
23 s.require_paths = ['lib']
5001cb27 24 s.requirements << 'eslint (in PATH)'
ce89f9ed 25
894ef180 26 s.add_dependency('pronto', '~> 0.8.0')
ce9820e0 27 s.add_development_dependency('rake', '>= 11.0', '< 13')
b338a7ad 28 s.add_development_dependency('rspec', '~> 3.4')
ce89f9ed 29end