summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authordanielsdeleo <dan@opscode.com>2014-02-04 15:27:54 -0800
committerdanielsdeleo <dan@opscode.com>2014-02-04 15:27:54 -0800
commit183ac1d049772cd01e1546e7a834c37bf532c239 (patch)
tree7cfb5c936d4ec864eca79bbfa94f5e95e0481bff /Rakefile
parent7b55f38e551b984535ff95d427887851489d2b13 (diff)
downloadchef-183ac1d049772cd01e1546e7a834c37bf532c239.tar.gz
Remove `rake gem` dep on deleted tasks
Dependency between task "gem" and "docs:all" caused "gem" to fail now that the obsolete "docs" tasks are removed.
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile3
1 files changed, 0 insertions, 3 deletions
diff --git a/Rakefile b/Rakefile
index 7005c0168d..2e0c203b49 100644
--- a/Rakefile
+++ b/Rakefile
@@ -26,9 +26,6 @@ require './tasks/rspec.rb'
GEM_NAME = "chef"
-# This has to be here or else the docs get generated *after* the gem is created
-task :gem => 'docs:all'
-
Dir[File.expand_path("../*gemspec", __FILE__)].reverse.each do |gemspec_path|
gemspec = eval(IO.read(gemspec_path))
Gem::PackageTask.new(gemspec).define