]> git.immae.eu Git - github/fretlink/pronto-hlint.git/blame - pronto-eslint_npm.gemspec
depend on pronto ~> 0.9.1
[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'
4256f4c9 12 s.homepage = 'https://github.com/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 19
71bd2314 20 s.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r{^(lib/|(LICENSE|README.md)$)}) }
ce89f9ed
MM
21 s.extra_rdoc_files = ['LICENSE', 'README.md']
22 s.require_paths = ['lib']
5001cb27 23 s.requirements << 'eslint (in PATH)'
ce89f9ed 24
4a987577 25 s.add_dependency('pronto', '~> 0.9.1')
ce9820e0 26 s.add_development_dependency('rake', '>= 11.0', '< 13')
b338a7ad 27 s.add_development_dependency('rspec', '~> 3.4')
b3bd8aaa 28 s.add_development_dependency('byebug', '>= 9')
ce89f9ed 29end