aboutsummaryrefslogblamecommitdiffstats
path: root/activerecord/test/models/owner.rb
blob: cf24502d3a70b3f6916fa3658adc1389308cda5d (plain) (tree)
1
2
3
4
                                
                              
                                               
                                   
















                              
   
class Owner < ActiveRecord::Base
  self.primary_key = :owner_id
  has_many :pets, -> { order 'pets.name desc' }
  has_many :toys, :through => :pets

  after_commit :execute_blocks

  def blocks
    @blocks ||= []
  end

  def on_after_commit(&block)
    blocks << block
  end

  def execute_blocks
    blocks.each do |block|
      block.call(self)
    end
    @blocks = []
  end
end