Sha256: e12f222f15a65299f4dc96b88afb59b3f3383fb6106b34e8552ea8b4de7b733d

Contents?: true

Size: 950 Bytes

Versions: 160

Compression:

Stored size: 950 Bytes

Contents

module ActiveRecord
  # = Active Record Has One Through Association
  module Associations
    class HasOneThroughAssociation < HasOneAssociation #:nodoc:
      include ThroughAssociation

      def replace(record)
        create_through_record(record)
        self.target = record
      end

      private

        def create_through_record(record)
          ensure_not_nested

          through_proxy  = owner.association(through_reflection.name)
          through_record = through_proxy.send(:load_target)

          if through_record && !record
            through_record.destroy
          elsif record
            attributes = construct_join_attributes(record)

            if through_record
              through_record.update(attributes)
            elsif owner.new_record?
              through_proxy.build(attributes)
            else
              through_proxy.create(attributes)
            end
          end
        end
    end
  end
end

Version data entries

160 entries across 155 versions & 11 rubygems

Version Path
solidus_backend-1.0.0.pre2 vendor/bundle/gems/activerecord-4.2.3/lib/active_record/associations/has_one_through_association.rb
solidus_backend-1.0.0.pre vendor/bundle/gems/activerecord-4.2.2/lib/active_record/associations/has_one_through_association.rb
solidus_backend-1.0.0.pre vendor/bundle/gems/activerecord-4.2.1/lib/active_record/associations/has_one_through_association.rb
activerecord-4.2.3 lib/active_record/associations/has_one_through_association.rb
activerecord-4.1.12 lib/active_record/associations/has_one_through_association.rb
activerecord-4.2.3.rc1 lib/active_record/associations/has_one_through_association.rb
activerecord-4.1.12.rc1 lib/active_record/associations/has_one_through_association.rb
activerecord-4.2.2 lib/active_record/associations/has_one_through_association.rb
activerecord-4.1.11 lib/active_record/associations/has_one_through_association.rb
shoppe-paypal-1.1.0 vendor/bundle/ruby/2.1.0/gems/activerecord-4.2.1/lib/active_record/associations/has_one_through_association.rb
activerecord-4.1.10 lib/active_record/associations/has_one_through_association.rb
activerecord-4.2.1 lib/active_record/associations/has_one_through_association.rb
activerecord-4.1.10.rc4 lib/active_record/associations/has_one_through_association.rb
activerecord-4.2.1.rc4 lib/active_record/associations/has_one_through_association.rb
activerecord-4.1.10.rc3 lib/active_record/associations/has_one_through_association.rb
activerecord-4.2.1.rc3 lib/active_record/associations/has_one_through_association.rb
activerecord-4.1.10.rc2 lib/active_record/associations/has_one_through_association.rb
activerecord-4.2.1.rc2 lib/active_record/associations/has_one_through_association.rb
activerecord-4.1.10.rc1 lib/active_record/associations/has_one_through_association.rb
activerecord-4.2.1.rc1 lib/active_record/associations/has_one_through_association.rb