]> git.immae.eu Git - github/fretlink/pronto-hlint.git/blame - pronto-eslint_npm.gemspec
harden config spec helper
[github/fretlink/pronto-hlint.git] / pronto-eslint_npm.gemspec
CommitLineData
0ab4d181 1# frozen_string_literal: true
5001cb27 2
0ab4d181 3$LOAD_PATH.push File.expand_path('lib', __dir__)
126fe1e2 4require 'pronto/eslint_npm/version'
ce89f9ed
MM
5
6Gem::Specification.new do |s|
0ab4d181
MD
7 s.name = 'pronto-eslint_npm'
8 s.version = Pronto::ESLintNpmVersion::VERSION
ce89f9ed 9 s.platform = Gem::Platform::RUBY
0ab4d181
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'
0ab4d181 13 s.summary = <<-EOF
ce89f9ed
MM
14 Pronto runner for ESLint, pluggable linting utility for JavaScript and JSX
15 EOF
16
0ab4d181 17 s.licenses = ['MIT']
0d6688dc 18 s.required_ruby_version = '>= 2.0.0'
ce89f9ed 19
0ab4d181 20 s.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r{^(lib/|(LICENSE|README.md)$)}) }
ce89f9ed 21 s.extra_rdoc_files = ['LICENSE', 'README.md']
0ab4d181 22 s.require_paths = ['lib']
5001cb27 23 s.requirements << 'eslint (in PATH)'
ce89f9ed 24
4a987577 25 s.add_dependency('pronto', '~> 0.9.1')
0ab4d181 26 s.add_development_dependency('byebug', '>= 9')
ce9820e0 27 s.add_development_dependency('rake', '>= 11.0', '< 13')
b338a7ad 28 s.add_development_dependency('rspec', '~> 3.4')
ce89f9ed 29end