Class: ActiveRecord::Reflection::PolymorphicReflection

Inherits:
AbstractReflection show all
Defined in:
activerecord/lib/active_record/reflection.rb

Overview

:nodoc:

Instance Method Summary collapse

Methods inherited from AbstractReflection

#alias_candidate, #build_association, #build_scope, #chain, #check_validity_of_inverse!, #class_name, #counter_cache_column, #counter_must_be_updated_by_has_many?, #has_cached_counter?, #inverse_of, #inverse_updates_counter_in_memory?, #inverse_which_updates_counter_cache, #join_scope, #klass_join_scope, #scopes, #strict_loading?, #strict_loading_violation_message, #table_name, #through_reflection?

Constructor Details

#initialize(reflection, previous_reflection) ⇒ PolymorphicReflection

Returns a new instance of PolymorphicReflection.



1084
1085
1086
1087
1088
# File 'activerecord/lib/active_record/reflection.rb', line 1084

def initialize(reflection, previous_reflection)
  super()
  @reflection = reflection
  @previous_reflection = previous_reflection
end

Instance Method Details

#constraintsObject



1095
1096
1097
# File 'activerecord/lib/active_record/reflection.rb', line 1095

def constraints
  @reflection.constraints + [source_type_scope]
end

#join_scopes(table, predicate_builder, klass = self.klass, record = nil) ⇒ Object

:nodoc:



1090
1091
1092
1093
# File 'activerecord/lib/active_record/reflection.rb', line 1090

def join_scopes(table, predicate_builder, klass = self.klass, record = nil) # :nodoc:
  scopes = @previous_reflection.join_scopes(table, predicate_builder, klass, record) + super
  scopes << build_scope(table, predicate_builder, klass).instance_exec(record, &source_type_scope)
end