class Rake::FileTask
def needed?
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
def needed? return true unless File.exist?(name) return true if out_of_date?(timestamp) false end