diff options
author | Serdar Sutay <serdar@opscode.com> | 2016-01-12 12:30:51 -0800 |
---|---|---|
committer | Serdar Sutay <serdar@opscode.com> | 2016-01-27 23:04:16 -0800 |
commit | 135d0c3f54d38a648647e289f8303c6316f44099 (patch) | |
tree | 6bcf5c12af949ea368ffede59ba84ab8df66cfe3 /chef.gemspec | |
parent | f0a0b3cdd1674dbf138e71fd1fb64939bad057df (diff) | |
download | chef-135d0c3f54d38a648647e289f8303c6316f44099.tar.gz |
Make sure acceptance tests for chef can run in Jenkins.sersut/ec2-acceptance
Diffstat (limited to 'chef.gemspec')
-rw-r--r-- | chef.gemspec | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chef.gemspec b/chef.gemspec index e50ef6c744..838df04803 100644 --- a/chef.gemspec +++ b/chef.gemspec @@ -55,5 +55,5 @@ Gem::Specification.new do |s| s.executables = %w{ chef-client chef-solo knife chef-shell chef-apply } s.require_paths = %w{ lib lib-backcompat } - s.files = %w{Gemfile Rakefile LICENSE README.md CONTRIBUTING.md} + Dir.glob("{distro,lib,lib-backcompat,tasks,spec}/**/*", File::FNM_DOTMATCH).reject {|f| File.directory?(f) } + Dir.glob("*.gemspec") + s.files = %w{Gemfile Rakefile LICENSE README.md CONTRIBUTING.md} + Dir.glob("{distro,lib,lib-backcompat,tasks,acceptance,spec}/**/*", File::FNM_DOTMATCH).reject {|f| File.directory?(f) } + Dir.glob("*.gemspec") end |