diff options
author | Markus Doits <markus.doits@stellenticket.de> | 2016-08-11 17:09:34 +0200 |
---|---|---|
committer | Markus Doits <markus.doits@stellenticket.de> | 2016-08-11 17:09:34 +0200 |
commit | 126fe1e2579c3fc33a410278c73dc6620d5d3110 (patch) | |
tree | 5ebc82d855f8e8398902a7b65c03a04f08209185 /pronto-eslint_npm.gemspec | |
parent | 156f8167360fffc318b47b797e7619beb21b0ff3 (diff) | |
download | pronto-hlint-126fe1e2579c3fc33a410278c73dc6620d5d3110.tar.gz pronto-hlint-126fe1e2579c3fc33a410278c73dc6620d5d3110.tar.zst pronto-hlint-126fe1e2579c3fc33a410278c73dc6620d5d3110.zip |
correct name according to recommended use of `_` and `-`
http://guides.rubygems.org/name-your-gem/
Diffstat (limited to 'pronto-eslint_npm.gemspec')
-rw-r--r-- | pronto-eslint_npm.gemspec | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/pronto-eslint_npm.gemspec b/pronto-eslint_npm.gemspec new file mode 100644 index 0000000..f51cbbb --- /dev/null +++ b/pronto-eslint_npm.gemspec | |||
@@ -0,0 +1,31 @@ | |||
1 | # -*- encoding: utf-8 -*- | ||
2 | |||
3 | $LOAD_PATH.push File.expand_path('../lib', __FILE__) | ||
4 | require 'pronto/eslint_npm/version' | ||
5 | require 'rake' | ||
6 | |||
7 | Gem::Specification.new do |s| | ||
8 | s.name = 'pronto-eslint_npm' | ||
9 | s.version = Pronto::ESLintNpmVersion::VERSION | ||
10 | s.platform = Gem::Platform::RUBY | ||
11 | s.authors = ['Markus Doits', 'Mindaugas MozĊĞras'] | ||
12 | s.email = 'markus.doits@gmail.com' | ||
13 | s.homepage = 'http://github.org/doits/pronto-eslint_npm' | ||
14 | s.summary = <<-EOF | ||
15 | Pronto runner for ESLint, pluggable linting utility for JavaScript and JSX | ||
16 | EOF | ||
17 | |||
18 | s.licenses = ['MIT'] | ||
19 | s.required_ruby_version = '>= 2.0.0' | ||
20 | s.rubygems_version = '1.8.23' | ||
21 | |||
22 | s.files = FileList['LICENSE', 'README.md', 'lib/**/*'] | ||
23 | s.extra_rdoc_files = ['LICENSE', 'README.md'] | ||
24 | s.require_paths = ['lib'] | ||
25 | s.requirements << 'eslint (in PATH)' | ||
26 | |||
27 | s.add_dependency('pronto', '~> 0.7.0') | ||
28 | s.add_development_dependency('rake', '~> 11.0') | ||
29 | s.add_development_dependency('rspec', '~> 3.4') | ||
30 | s.add_development_dependency('rspec-its', '~> 1.2') | ||
31 | end | ||