diff options
author | Claire McQuin <claire@getchef.com> | 2014-11-07 10:46:21 -0800 |
---|---|---|
committer | Claire McQuin <claire@getchef.com> | 2014-11-07 10:46:21 -0800 |
commit | d8eb915d73ad2d132a0b58526e035502e45d2e5e (patch) | |
tree | 14c30a4f0e73a02cafa6e6179f6a6678d63af0b2 /chef.gemspec | |
parent | 4fa0ea6f9b942d407b83712ec53e19447ddfa39b (diff) | |
parent | bf6340a113dd0c37e2084c70007d201742f11e9d (diff) | |
download | chef-d8eb915d73ad2d132a0b58526e035502e45d2e5e.tar.gz |
Merge branch 'master' into mcquin/rspec-3
Diffstat (limited to 'chef.gemspec')
-rw-r--r-- | chef.gemspec | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/chef.gemspec b/chef.gemspec index 7f9b6cd3e6..8e906a0ef1 100644 --- a/chef.gemspec +++ b/chef.gemspec @@ -46,10 +46,7 @@ Gem::Specification.new do |s| %w(rspec-core rspec-expectations rspec-mocks).each { |gem| s.add_development_dependency gem, "~> 3.0" } s.bindir = "bin" - # chef-service-manager is a windows only executable. - # However gemspec doesn't give us a way to have this executable only - # on windows. So we're including this in all platforms. - s.executables = %w( chef-client chef-solo knife chef-shell shef chef-apply chef-service-manager chef-windows-service ) + s.executables = %w( chef-client chef-solo knife chef-shell shef chef-apply ) s.require_path = 'lib' s.files = %w(Rakefile LICENSE README.md CONTRIBUTING.md) + Dir.glob("{distro,lib,tasks,spec}/**/*", File::FNM_DOTMATCH).reject {|f| File.directory?(f) } |