method
    
    create_belongs_to_reflection
 
  create_belongs_to_reflection(association_id, options)
  private
  
    Hide source    
    
      
  
# File activerecord/lib/active_record/associations.rb, line 1370 def create_belongs_to_reflection(association_id, options) options.assert_valid_keys( :class_name, :foreign_key, :foreign_type, :remote, :select, :conditions, :include, :dependent, :counter_cache, :extend, :polymorphic, :readonly ) reflection = create_reflection(:belongs_to, association_id, options, self) if options[:polymorphic] reflection.options[:foreign_type] ||= reflection.class_name.underscore + "_type" end reflection end

 RSpec
RSpec Ruby on Rails
Ruby on Rails Ruby
Ruby 
   
    
 
   
   = protected
 = protected
  