summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKartik Null Cating-Subramanian <ksubramanian@chef.io>2015-10-09 12:54:35 -0400
committerKartik Null Cating-Subramanian <ksubramanian@chef.io>2015-10-09 12:54:35 -0400
commit90c9fb39c8ae20a45cb9fd0fbed39aa0c4b763c1 (patch)
treea237a0c61a98cc9c28ee3c7d16492c2c61c68c48
parent01a92144afbf25fffe575f123337a33c0c1f8e6a (diff)
downloadchef-zero-ksubrama/gemspec.tar.gz
Add gemspec files to allow bundler to run from the gemksubrama/gemspec
-rw-r--r--chef-zero.gemspec3
1 files changed, 2 insertions, 1 deletions
diff --git a/chef-zero.gemspec b/chef-zero.gemspec
index 44472bd..815dba8 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