diff options
author | Dan DeLeo <danielsdeleo@mac.com> | 2010-01-05 17:55:03 -0700 |
---|---|---|
committer | Dan DeLeo <danielsdeleo@mac.com> | 2010-01-05 17:55:03 -0700 |
commit | 76bb7802271e3c2f2148574fa46404600db50f9d (patch) | |
tree | d16c64f519fb89df9f67530cf7b13b8877e0c586 /chef/Rakefile | |
parent | e4b741ddec40ad152ba5f11c2132a38dd106210e (diff) | |
download | chef-76bb7802271e3c2f2148574fa46404600db50f9d.tar.gz |
install shef executable with gem install
Diffstat (limited to 'chef/Rakefile')
-rw-r--r-- | chef/Rakefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chef/Rakefile b/chef/Rakefile index 8bdd348804..3f145d32b2 100644 --- a/chef/Rakefile +++ b/chef/Rakefile @@ -28,7 +28,7 @@ spec = Gem::Specification.new do |s| %w{mixlib-cli mixlib-log mixlib-authentication json erubis extlib amqp thor ruby-hmac deep_merge moneta}.each { |gem| s.add_dependency gem } s.bindir = "bin" - s.executables = %w( chef-client chef-solo knife ) + s.executables = %w( chef-client chef-solo knife shef ) s.require_path = 'lib' s.files = %w(LICENSE README.rdoc) + Dir.glob("{distro,lib}/**/*") end |