Sha256: 21bef0ae4096eca14acc9003ccc3af5f7b61c6cb4e1ef9f582611ae30932cece

Contents?: true

Size: 786 Bytes

Versions: 10

Compression:

Stored size: 786 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_one :bulb

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

  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

10 entries across 10 versions & 2 rubygems

Version Path
ibm_db-3.0.4-x86-mingw32 test/models/car.rb
ibm_db-3.0.4 test/models/car.rb
ibm_db-3.0.3-x86-mingw32 test/models/car.rb
ibm_db-3.0.3 test/models/car.rb
ibm_db-3.0.2-x86-mingw32 test/models/car.rb
ibm_db-3.0.2 test/models/car.rb
activejob-lock-0.0.2 rails/activerecord/test/models/car.rb
ibm_db-3.0.1 test/models/car.rb
ibm_db-3.0.1-x86-mingw32 test/models/car.rb
activejob-lock-0.0.1 rails/activerecord/test/models/car.rb