class Rake::FileTask

def needed?

is out of date.
Is this file task needed? Yes if it doesn't exist, or if its time stamp
def needed?
  return true unless File.exist?(name)
  return true if out_of_date?(timestamp)
  false
end