aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/Rakefile
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2007-12-27 11:17:14 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2007-12-27 11:17:14 +0000
commitd760d882d77bbc0f780a76a9a78415a469bc4278 (patch)
tree27aa3739bb49307476e9a1f658c1cdc700380880 /activesupport/Rakefile
parente2d4ebdea4eab41c4af1c5530a9e180d11529dec (diff)
downloadrails-d760d882d77bbc0f780a76a9a78415a469bc4278.tar.gz
rails-d760d882d77bbc0f780a76a9a78415a469bc4278.tar.bz2
rails-d760d882d77bbc0f780a76a9a78415a469bc4278.zip
Move rubyforge task require
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8489 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/Rakefile')
-rw-r--r--activesupport/Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/Rakefile b/activesupport/Rakefile
index 005792b987..013d4fe0d1 100644
--- a/activesupport/Rakefile
+++ b/activesupport/Rakefile
@@ -1,7 +1,6 @@
require 'rake/testtask'
require 'rake/rdoctask'
require 'rake/gempackagetask'
-require 'rake/contrib/rubyforgepublisher'
require File.join(File.dirname(__FILE__), 'lib', 'active_support', 'version')
PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : ''
@@ -76,6 +75,7 @@ end
desc "Publish the release files to RubyForge."
task :release => [ :package ] do
require 'rubyforge'
+ require 'rake/contrib/rubyforgepublisher'
packages = %w( gem tgz zip ).collect{ |ext| "pkg/#{PKG_NAME}-#{PKG_VERSION}.#{ext}" }