Skip to content

Instantly share code, notes, and snippets.

Created June 19, 2015 09:04
Show Gist options
  • Save anonymous/031e21f64682c0893a1b to your computer and use it in GitHub Desktop.
Save anonymous/031e21f64682c0893a1b to your computer and use it in GitHub Desktop.
class ActiveRecord::Base
def with_lock_save(lock = true)
self.save!() if self.changed?
self.with_lock(lock) do
yield
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment