class Rake::FileCreationTask

def needed?

Is this file task needed? Yes if it doesn't exist.
def needed?
  ! File.exist?(name)
end