summaryrefslogtreecommitdiff
path: root/lib/rake/phony.rb
diff options
context:
space:
mode:
authordrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-11-15 22:32:34 +0000
committerdrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-11-15 22:32:34 +0000
commit1b023030a88a35118875b068a1fd725c58a32083 (patch)
tree07bbdc25e71d98bfa4091f617d82fc87541364c5 /lib/rake/phony.rb
parente9c28d0fce1fa34bd83e910273981190932ebf63 (diff)
* lib/rake*: Updated to rake 0.9.4
http://rake.rubyforge.org/doc/release_notes/rake-0_9_4_rdoc.html for a list of changes in 0.9.4. * test/rake*: ditto * NEWS: ditto git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37667 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/rake/phony.rb')
-rw-r--r--lib/rake/phony.rb6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/rake/phony.rb b/lib/rake/phony.rb
index 0552c26a33..29633ae066 100644
--- a/lib/rake/phony.rb
+++ b/lib/rake/phony.rb
@@ -8,6 +8,8 @@ require 'rake'
task :phony
-def (Rake::Task[:phony]).timestamp
- Time.at 0
+Rake::Task[:phony].tap do |task|
+ def task.timestamp # :nodoc:
+ Time.at 0
+ end
end