summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rwxr-xr-xminirake3
1 files changed, 1 insertions, 2 deletions
diff --git a/minirake b/minirake
index 6e63cbb1e..542c37a79 100755
--- a/minirake
+++ b/minirake
@@ -113,8 +113,7 @@ module MiniRake
# Timestamp for this task. Basic tasks return the current time for
# their time stamp. Other tasks can be more sophisticated.
def timestamp
- prerequisites = @prerequisites.collect{ |n| n.is_a?(Proc) ? n.call(name) : n }.flatten
- prerequisites.collect { |n| Task[n].timestamp }.max || Time.now
+ Time.now
end
# Class Methods ----------------------------------------------------