aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMarkus Doits <doits@users.noreply.github.com>2017-02-16 11:46:54 +0100
committerGitHub <noreply@github.com>2017-02-16 11:46:54 +0100
commit75259b38c5d91473c27baf5211f3d8a569f5d928 (patch)
tree6f04371fe4c8b0edd23b4a7543e0a89a1d91de9d
parent31779f86de714e1f779bd80c1564f1004a82801e (diff)
parent71bd23148d939cc4e221fa493b874539d261a892 (diff)
downloadpronto-hlint-75259b38c5d91473c27baf5211f3d8a569f5d928.tar.gz
pronto-hlint-75259b38c5d91473c27baf5211f3d8a569f5d928.tar.zst
pronto-hlint-75259b38c5d91473c27baf5211f3d8a569f5d928.zip
Merge pull request #4 from JoeSouthan/remove-rake-dependency
Remove rake dependency in gemspec
-rw-r--r--pronto-eslint_npm.gemspec3
1 files changed, 1 insertions, 2 deletions
diff --git a/pronto-eslint_npm.gemspec b/pronto-eslint_npm.gemspec
index 47cbf18..7f965c0 100644
--- a/pronto-eslint_npm.gemspec
+++ b/pronto-eslint_npm.gemspec
@@ -2,7 +2,6 @@
2 2
3$LOAD_PATH.push File.expand_path('../lib', __FILE__) 3$LOAD_PATH.push File.expand_path('../lib', __FILE__)
4require 'pronto/eslint_npm/version' 4require 'pronto/eslint_npm/version'
5require 'rake'
6 5
7Gem::Specification.new do |s| 6Gem::Specification.new do |s|
8 s.name = 'pronto-eslint_npm' 7 s.name = 'pronto-eslint_npm'
@@ -19,7 +18,7 @@ Gem::Specification.new do |s|
19 s.required_ruby_version = '>= 2.0.0' 18 s.required_ruby_version = '>= 2.0.0'
20 s.rubygems_version = '1.8.23' 19 s.rubygems_version = '1.8.23'
21 20
22 s.files = FileList['LICENSE', 'README.md', 'lib/**/*'] 21 s.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r{^(lib/|(LICENSE|README.md)$)}) }
23 s.extra_rdoc_files = ['LICENSE', 'README.md'] 22 s.extra_rdoc_files = ['LICENSE', 'README.md']
24 s.require_paths = ['lib'] 23 s.require_paths = ['lib']
25 s.requirements << 'eslint (in PATH)' 24 s.requirements << 'eslint (in PATH)'