Skip to content

Instantly share code, notes, and snippets.

@ordinaryzelig
Created February 26, 2010 22:22
Show Gist options
  • Save ordinaryzelig/316246 to your computer and use it in GitHub Desktop.
Save ordinaryzelig/316246 to your computer and use it in GitHub Desktop.
internal sandbox mode
# rollback whatever was done in this block.
class ActiveRecord::Base
def self.sand_boxed
transaction do
yield
raise ActiveRecord::Rollback
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment