aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/Rakefile
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2010-02-05 00:03:03 -0800
committerJeremy Kemper <jeremy@bitsweat.net>2010-02-05 00:03:03 -0800
commit459ecaf95db12ec64e70c02f8ee58ddb1133021e (patch)
treeaf35c4dcc49da477813545fee5237aa1ff3c31fa /activesupport/Rakefile
parentae4cb0641ed5505c99f3ba6eef35a83c263bfe98 (diff)
downloadrails-459ecaf95db12ec64e70c02f8ee58ddb1133021e.tar.gz
rails-459ecaf95db12ec64e70c02f8ee58ddb1133021e.tar.bz2
rails-459ecaf95db12ec64e70c02f8ee58ddb1133021e.zip
Submarine the rake-gemcutter dep in Rakefiles
Diffstat (limited to 'activesupport/Rakefile')
-rw-r--r--activesupport/Rakefile9
1 files changed, 5 insertions, 4 deletions
diff --git a/activesupport/Rakefile b/activesupport/Rakefile
index 160802b10d..357bdca715 100644
--- a/activesupport/Rakefile
+++ b/activesupport/Rakefile
@@ -1,7 +1,6 @@
require 'rake/testtask'
require 'rake/rdoctask'
require 'rake/gempackagetask'
-require 'rake/gemcutter'
require File.join(File.dirname(__FILE__), 'lib', 'active_support', 'version')
@@ -50,10 +49,12 @@ Rake::GemPackageTask.new(spec) do |p|
p.gem_spec = spec
end
-Rake::Gemcutter::Tasks.new(spec).define
-
desc "Release to gemcutter"
-task :release => [:package, 'gem:push']
+task :release => :package do
+ require 'rake/gemcutter'
+ Rake::Gemcutter::Tasks.new(spec).define
+ Rake::Task['gem:push'].invoke
+end
desc "Publish the API documentation"
task :pdoc => [:rdoc] do