Report abuse

class Foo
  has_many :bars
end

class Bar
  belongs_to :foo

  after_create :whatever

private
  def whatever
    puts "#{foo.name} had a bar!" if foo
  end
end