From 71bd23148d939cc4e221fa493b874539d261a892 Mon Sep 17 00:00:00 2001 From: Markus Doits Date: Thu, 16 Feb 2017 11:44:50 +0100 Subject: [PATCH] Only include files that were included before --- pronto-eslint_npm.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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| s.required_ruby_version = '>= 2.0.0' s.rubygems_version = '1.8.23' - s.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } + s.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r{^(lib/|(LICENSE|README.md)$)}) } s.extra_rdoc_files = ['LICENSE', 'README.md'] s.require_paths = ['lib'] s.requirements << 'eslint (in PATH)' -- 2.41.0