Guest User

Untitled

a guest
May 6th, 2012
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. class OtherModel < ActiveRecord::Base
  2. after_create :some_slow_method, :on => :create
  3.  
  4. private
  5.  
  6. def some_slow_method
  7. # do something that takes a while
  8. end
  9. end
Advertisement
Add Comment
Please, Sign In to add comment