Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 6th, 2012  |  syntax: None  |  size: 0.17 KB  |  hits: 41  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  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