aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/Rakefile
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2011-05-24 23:38:11 +0530
committerVijay Dev <vijaydev.cse@gmail.com>2011-05-24 23:39:24 +0530
commit79e9a2983a91c5e84fe99cab3214e3747121e63f (patch)
tree2b378aec1bfaed9bd382124a9dc25018af27944e /activesupport/Rakefile
parentc4a9467af4f2e08db50b350a6ffca9bf4026ef59 (diff)
downloadrails-79e9a2983a91c5e84fe99cab3214e3747121e63f.tar.gz
rails-79e9a2983a91c5e84fe99cab3214e3747121e63f.tar.bz2
rails-79e9a2983a91c5e84fe99cab3214e3747121e63f.zip
fixes Rake::GemPackageTask deprecation warnings from rake 0.9.0
Diffstat (limited to 'activesupport/Rakefile')
-rwxr-xr-xactivesupport/Rakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/activesupport/Rakefile b/activesupport/Rakefile
index d117ca6356..822c9d98ae 100755
--- a/activesupport/Rakefile
+++ b/activesupport/Rakefile
@@ -1,5 +1,5 @@
require 'rake/testtask'
-require 'rake/gempackagetask'
+require 'rubygems/package_task'
task :default => :test
Rake::TestTask.new do |t|
@@ -20,7 +20,7 @@ dist_dirs = [ "lib", "test"]
spec = eval(File.read('activesupport.gemspec'))
-Rake::GemPackageTask.new(spec) do |p|
+Gem::PackageTask.new(spec) do |p|
p.gem_spec = spec
end