Sha256: edf770346e6727e670291d0a7ab2ce6f193021f86c288be031a50c4755851f67

Contents?: true

Size: 715 Bytes

Versions: 12

Compression:

Stored size: 715 Bytes

Contents

class Man < ActiveRecord::Base
  has_one :face, :inverse_of => :man
  has_one :polymorphic_face, :class_name => 'Face', :as => :polymorphic_man, :inverse_of => :polymorphic_man
  has_one :polymorphic_face_without_inverse, :class_name => 'Face', :as => :poly_man_without_inverse
  has_many :interests, :inverse_of => :man
  has_many :polymorphic_interests, :class_name => 'Interest', :as => :polymorphic_man, :inverse_of => :polymorphic_man
  # These are "broken" inverse_of associations for the purposes of testing
  has_one :dirty_face, :class_name => 'Face', :inverse_of => :dirty_man
  has_many :secret_interests, :class_name => 'Interest', :inverse_of => :secret_man
  has_one :mixed_case_monkey
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
ibm_db-5.5.0-x86-mingw32 test/models/man.rb
ibm_db-5.4.1-x86-mingw32 test/models/man.rb
ibm_db-5.4.0-x86-mingw32 test/models/man.rb
ibm_db-5.3.2-x86-mingw32 test/models/man.rb
ibm_db-5.2.0-x86-mingw32 test/models/man.rb
ibm_db-5.1.0-x86-mingw32 test/models/man.rb
ibm_db-5.0.5-x86-mingw32 test/models/man.rb
ibm_db-5.0.4-x86-mingw32 test/models/man.rb
ibm_db-5.0.3-x86-mingw32 test/models/man.rb
ibm_db-5.0.2-x86-mingw32 test/models/man.rb
ibm_db-3.0.5-x86-mingw32 test/models/man.rb
ibm_db-3.0.5 test/models/man.rb