Skip to content

Instantly share code, notes, and snippets.

@rociiu
Created September 14, 2010 16:26
Show Gist options
  • Save rociiu/579303 to your computer and use it in GitHub Desktop.
Save rociiu/579303 to your computer and use it in GitHub Desktop.
class Fixtures
alias_method :origin_delete_existing_fixtures, :delete_existing_fixtures
def delete_existing_fixtures; puts "doing nothing."; end
end
# during the import
class Fixtures
alias_method :delete_existing_fixtures, :origin_delete_existing_fixtures
remove_method :origin_delete_existing_fixtures
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment