Class: ActiveRecord::Reflection::PolymorphicReflection
- Inherits:
-
AbstractReflection
- Object
- AbstractReflection
- ActiveRecord::Reflection::PolymorphicReflection
- Defined in:
- lib/active_record/reflection.rb
Overview
:nodoc:
Instance Method Summary collapse
- #constraints ⇒ Object
-
#initialize(reflection, previous_reflection) ⇒ PolymorphicReflection
constructor
A new instance of PolymorphicReflection.
-
#join_scopes(table, predicate_builder, klass = self.klass, record = nil) ⇒ Object
:nodoc:.
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.
1164 1165 1166 1167 1168 |
# File 'lib/active_record/reflection.rb', line 1164 def initialize(reflection, previous_reflection) super() @reflection = reflection @previous_reflection = previous_reflection end |
Instance Method Details
#constraints ⇒ Object
1175 1176 1177 |
# File 'lib/active_record/reflection.rb', line 1175 def constraints @reflection.constraints + [source_type_scope] end |
#join_scopes(table, predicate_builder, klass = self.klass, record = nil) ⇒ Object
:nodoc:
1170 1171 1172 1173 |
# File 'lib/active_record/reflection.rb', line 1170 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 |