class Rake::FileTask

def out_of_date?(stamp)

Are there any prerequisites with a later time than the given time stamp?
def out_of_date?(stamp)
  @prerequisites.any? { |n| application[n, @scope].timestamp > stamp}
end