Class: ActiveRecord::Reflection::RuntimeReflection

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, #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.



1034
1035
1036
1037
# File 'activerecord/lib/active_record/reflection.rb', line 1034

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

Instance Method Details

#aliased_tableObject



1043
1044
1045
# File 'activerecord/lib/active_record/reflection.rb', line 1043

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

#all_includesObject



1047
# File 'activerecord/lib/active_record/reflection.rb', line 1047

def all_includes; yield; end

#klassObject



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

def klass
  @association.klass
end