diff options
Diffstat (limited to 'pronto-eslint_npm.gemspec')
-rw-r--r-- | pronto-eslint_npm.gemspec | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/pronto-eslint_npm.gemspec b/pronto-eslint_npm.gemspec index d3e3b65..2304678 100644 --- a/pronto-eslint_npm.gemspec +++ b/pronto-eslint_npm.gemspec | |||
@@ -1,29 +1,29 @@ | |||
1 | # -*- encoding: utf-8 -*- | 1 | # frozen_string_literal: true |
2 | 2 | ||
3 | $LOAD_PATH.push File.expand_path('../lib', __FILE__) | 3 | $LOAD_PATH.push File.expand_path('lib', __dir__) |
4 | require 'pronto/eslint_npm/version' | 4 | require 'pronto/eslint_npm/version' |
5 | 5 | ||
6 | Gem::Specification.new do |s| | 6 | Gem::Specification.new do |s| |
7 | s.name = 'pronto-eslint_npm' | 7 | s.name = 'pronto-eslint_npm' |
8 | s.version = Pronto::ESLintNpmVersion::VERSION | 8 | s.version = Pronto::ESLintNpmVersion::VERSION |
9 | s.platform = Gem::Platform::RUBY | 9 | s.platform = Gem::Platform::RUBY |
10 | s.authors = ['Markus Doits', 'Mindaugas Mozūras'] | 10 | s.authors = ['Markus Doits', 'Mindaugas Mozūras'] |
11 | s.email = 'markus.doits@gmail.com' | 11 | s.email = 'markus.doits@gmail.com' |
12 | s.homepage = 'https://github.com/doits/pronto-eslint_npm' | 12 | s.homepage = 'https://github.com/doits/pronto-eslint_npm' |
13 | s.summary = <<-EOF | 13 | s.summary = <<-EOF |
14 | Pronto runner for ESLint, pluggable linting utility for JavaScript and JSX | 14 | Pronto runner for ESLint, pluggable linting utility for JavaScript and JSX |
15 | EOF | 15 | EOF |
16 | 16 | ||
17 | s.licenses = ['MIT'] | 17 | s.licenses = ['MIT'] |
18 | s.required_ruby_version = '>= 2.0.0' | 18 | s.required_ruby_version = '>= 2.0.0' |
19 | 19 | ||
20 | s.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r{^(lib/|(LICENSE|README.md)$)}) } | 20 | s.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r{^(lib/|(LICENSE|README.md)$)}) } |
21 | s.extra_rdoc_files = ['LICENSE', 'README.md'] | 21 | s.extra_rdoc_files = ['LICENSE', 'README.md'] |
22 | s.require_paths = ['lib'] | 22 | s.require_paths = ['lib'] |
23 | s.requirements << 'eslint (in PATH)' | 23 | s.requirements << 'eslint (in PATH)' |
24 | 24 | ||
25 | s.add_dependency('pronto', '~> 0.9.1') | 25 | s.add_dependency('pronto', '~> 0.9.1') |
26 | s.add_development_dependency('byebug', '>= 9') | ||
26 | s.add_development_dependency('rake', '>= 11.0', '< 13') | 27 | s.add_development_dependency('rake', '>= 11.0', '< 13') |
27 | s.add_development_dependency('rspec', '~> 3.4') | 28 | s.add_development_dependency('rspec', '~> 3.4') |
28 | s.add_development_dependency('byebug', '>= 9') | ||
29 | end | 29 | end |