diff options
Diffstat (limited to 'chef-zero.gemspec')
-rw-r--r-- | chef-zero.gemspec | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chef-zero.gemspec b/chef-zero.gemspec index 44472bd..6c7e357 100644 --- a/chef-zero.gemspec +++ b/chef-zero.gemspec @@ -25,5 +25,6 @@ Gem::Specification.new do |s| s.bindir = 'bin' s.executables = ['chef-zero'] s.require_path = 'lib' - s.files = %w(LICENSE README.md Gemfile Rakefile) + Dir.glob('{lib,spec}/**/*') + s.files = %w(LICENSE README.md Gemfile Rakefile) + Dir.glob('*.gemspec') + + Dir.glob('{lib,spec}/**/*', File::FNM_DOTMATCH).reject {|f| File.directory?(f) } end |