Sha256: c9d529f206047dbf78394e07a0b9bc431eb315e9f486dfd10e5a92d92b27fe12

Contents?: true

Size: 801 Bytes

Versions: 6

Compression:

Stored size: 801 Bytes

Contents

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

  belongs_to :last_pet, class_name: 'Pet'
  scope :including_last_pet, -> {
    select(%q[
      owners.*, (
        select p.pet_id from pets p
        where p.owner_id = owners.owner_id
        order by p.name desc
        limit 1
      ) as last_pet_id
    ]).includes(:last_pet)
  }

  after_commit :execute_blocks

  accepts_nested_attributes_for :pets, allow_destroy: true

  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

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
ibm_db-5.2.0-x86-mingw32 test/models/owner.rb
ibm_db-5.1.0-x86-mingw32 test/models/owner.rb
ibm_db-5.0.5-x86-mingw32 test/models/owner.rb
ibm_db-5.0.4-x86-mingw32 test/models/owner.rb
ibm_db-5.0.3-x86-mingw32 test/models/owner.rb
ibm_db-5.0.2-x86-mingw32 test/models/owner.rb