method

new

rails latest stable - Class: ActiveRecord::Associations::ClassMethods::JoinDependency

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v3.0.9) is shown here.

new(base, associations, joins)
public

No documentation available.

# File activerecord/lib/active_record/associations.rb, line 1843
          def initialize(base, associations, joins)
            @joins                 = [JoinBase.new(base, joins)]
            @associations          = {}
            @reflections           = []
            @base_records_hash     = {}
            @base_records_in_order = []
            @table_aliases         = Hash.new { |aliases, table| aliases[table] = 0 }
            @table_aliases[base.table_name] = 1
            build(associations)
          end