Class: ActiveRecord::Reflection::RuntimeReflection

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

Overview

:nodoc:

Instance Method Summary collapse

Methods inherited from AbstractReflection

#alias_candidate, #build_association, #build_join_constraint, #build_scope, #chain, #check_validity_of_inverse!, #class_name, #constraints, #counter_cache_column, #counter_must_be_updated_by_has_many?, #get_join_keys, #has_cached_counter?, #inverse_of, #inverse_updates_counter_in_memory?, #inverse_which_updates_counter_cache, #join_foreign_key, #join_keys, #join_primary_key, #join_scope, #join_scopes, #klass_join_scope, #scopes, #table_name, #through_reflection?

Constructor Details

#initialize(reflection, association) ⇒ RuntimeReflection

Returns a new instance of RuntimeReflection.



1028
1029
1030
1031
# File 'lib/active_record/reflection.rb', line 1028

def initialize(reflection, association)
  @reflection = reflection
  @association = association
end

Instance Method Details

#aliased_tableObject



1037
1038
1039
# File 'lib/active_record/reflection.rb', line 1037

def aliased_table
  @aliased_table ||= Arel::Table.new(table_name, type_caster: klass.type_caster)
end

#all_includesObject



1041
# File 'lib/active_record/reflection.rb', line 1041

def all_includes; yield; end

#klassObject



1033
1034
1035
# File 'lib/active_record/reflection.rb', line 1033

def klass
  @association.klass
end