Skip to content

Instantly share code, notes, and snippets.

@addynaik
Created December 22, 2011 03:11
Show Gist options
  • Save addynaik/1508744 to your computer and use it in GitHub Desktop.
Save addynaik/1508744 to your computer and use it in GitHub Desktop.
def create_or_update #:nodoc:
run_callbacks(:save) { super }
end
def create #:nodoc:
run_callbacks(:create) { super }
end
def update(*) #:nodoc:
run_callbacks(:update) { super }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment