Sha256: d2e146049f1c6e591830dc9115a169907ec218d35bdf432d2ca8ab8feb128c30

Contents?: true

Size: 898 Bytes

Versions: 8

Compression:

Stored size: 898 Bytes

Contents

class Car < ActiveRecord::Base
  has_many :bulbs
  has_many :all_bulbs, -> { unscope where: :name }, class_name: "Bulb"
  has_many :funky_bulbs, class_name: 'FunkyBulb', dependent: :destroy
  has_many :failed_bulbs, class_name: 'FailedBulb', dependent: :destroy
  has_many :foo_bulbs, -> { where(:name => 'foo') }, :class_name => "Bulb"
  has_many :awesome_bulbs, -> { awesome }, class_name: "Bulb"

  has_one :bulb

  has_many :tyres
  has_many :engines, :dependent => :destroy, inverse_of: :my_car
  has_many :wheels, :as => :wheelable, :dependent => :destroy

  has_many :price_estimates, :as => :estimate_of

  scope :incl_tyres, -> { includes(:tyres) }
  scope :incl_engines, -> { includes(:engines) }

  scope :order_using_new_style,  -> { order('name asc') }
end

class CoolCar < Car
  default_scope { order('name desc') }
end

class FastCar < Car
  default_scope { order('name desc') }
end

Version data entries

8 entries across 8 versions & 1 rubygems

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