timestamp()
public
Timestamp for this task. Basic tasks return the current time for
their time stamp. Other tasks
can be more sophisticated.
# File lib/rake/task.rb, line 217
def timestamp
prerequisite_tasks.collect { |pre| pre.timestamp }.max || Time.now
end