Class: ActiveRecord::Reflection::RuntimeReflection
Overview
Instance Method Summary
collapse
#alias_candidate, #build_association, #build_scope, #chain, #check_validity_of_inverse!, #class_name, #constraints, #counter_cache_column, #counter_must_be_updated_by_has_many?, #has_active_cached_counter?, #has_cached_counter?, #inverse_of, #inverse_updates_counter_in_memory?, #inverse_which_updates_counter_cache, #join_scope, #join_scopes, #klass_join_scope, #scopes, #strict_loading?, #strict_loading_violation_message, #table_name, #through_reflection?
Constructor Details
#initialize(reflection, association) ⇒ RuntimeReflection
Returns a new instance of RuntimeReflection.
1257
1258
1259
1260
1261
|
# File 'lib/active_record/reflection.rb', line 1257
def initialize(reflection, association)
super()
@reflection = reflection
@association = association
end
|
Instance Method Details
#aliased_table ⇒ Object
1267
1268
1269
|
# File 'lib/active_record/reflection.rb', line 1267
def aliased_table
klass.arel_table
end
|
#all_includes ⇒ Object
1275
|
# File 'lib/active_record/reflection.rb', line 1275
def all_includes; yield; end
|
#join_primary_key(klass = self.klass) ⇒ Object
1271
1272
1273
|
# File 'lib/active_record/reflection.rb', line 1271
def join_primary_key(klass = self.klass)
@reflection.join_primary_key(klass)
end
|
#klass ⇒ Object
1263
1264
1265
|
# File 'lib/active_record/reflection.rb', line 1263
def klass
@association.klass
end
|