diff options
author | Markus Doits <doits@users.noreply.github.com> | 2017-02-16 11:44:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-16 11:44:50 +0100 |
commit | 71bd23148d939cc4e221fa493b874539d261a892 (patch) | |
tree | 6f04371fe4c8b0edd23b4a7543e0a89a1d91de9d | |
parent | 3658504ef915e79c265ea08f754b6879b3d4cb17 (diff) | |
download | pronto-hlint-71bd23148d939cc4e221fa493b874539d261a892.tar.gz pronto-hlint-71bd23148d939cc4e221fa493b874539d261a892.tar.zst pronto-hlint-71bd23148d939cc4e221fa493b874539d261a892.zip |
Only include files that were included before
-rw-r--r-- | pronto-eslint_npm.gemspec | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pronto-eslint_npm.gemspec b/pronto-eslint_npm.gemspec index 15373f4..7f965c0 100644 --- a/pronto-eslint_npm.gemspec +++ b/pronto-eslint_npm.gemspec | |||
@@ -18,7 +18,7 @@ Gem::Specification.new do |s| | |||
18 | s.required_ruby_version = '>= 2.0.0' | 18 | s.required_ruby_version = '>= 2.0.0' |
19 | s.rubygems_version = '1.8.23' | 19 | s.rubygems_version = '1.8.23' |
20 | 20 | ||
21 | s.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } | 21 | s.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r{^(lib/|(LICENSE|README.md)$)}) } |
22 | s.extra_rdoc_files = ['LICENSE', 'README.md'] | 22 | s.extra_rdoc_files = ['LICENSE', 'README.md'] |
23 | s.require_paths = ['lib'] | 23 | s.require_paths = ['lib'] |
24 | s.requirements << 'eslint (in PATH)' | 24 | s.requirements << 'eslint (in PATH)' |