Sha256: 3451d866997f321eb14fb08e39dfe7c5d2f7f50927616c2da64c0440ec3e27a2

Contents?: true

Size: 961 Bytes

Versions: 193

Compression:

Stored size: 961 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(attributes)
            elsif owner.new_record?
              through_proxy.build(attributes)
            else
              through_proxy.create(attributes)
            end
          end
        end
    end
  end
end

Version data entries

193 entries across 162 versions & 15 rubygems

Version Path
dirty_history-0.5.4 dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/associations/has_one_through_association.rb
activerecord-3.2.5 lib/active_record/associations/has_one_through_association.rb
activerecord-3.2.4 lib/active_record/associations/has_one_through_association.rb
activerecord-3.1.5 lib/active_record/associations/has_one_through_association.rb
activerecord-3.2.4.rc1 lib/active_record/associations/has_one_through_association.rb
activerecord-3.1.5.rc1 lib/active_record/associations/has_one_through_association.rb
sunrise-cms-0.3.0.rc vendor/bundle/ruby/1.9.1/gems/rails-uploader-0.0.1/vendor/bundle/ruby/1.9.1/gems/activerecord-3.2.3/lib/active_record/associations/has_one_through_association.rb
sunrise-cms-0.3.0.rc vendor/bundle/ruby/1.9.1/gems/activerecord-3.2.3/lib/active_record/associations/has_one_through_association.rb
rails-uploader-0.0.1 vendor/bundle/ruby/1.9.1/gems/activerecord-3.2.3/lib/active_record/associations/has_one_through_association.rb
challah-0.6.0 vendor/bundle/gems/activerecord-3.2.1/lib/active_record/associations/has_one_through_association.rb
challah-0.6.0 vendor/bundle/gems/activerecord-3.2.3/lib/active_record/associations/has_one_through_association.rb
challah-0.6.0 vendor/bundle/gems/activerecord-3.2.2/lib/active_record/associations/has_one_through_association.rb
challah-0.5.4 vendor/bundle/gems/activerecord-3.2.2/lib/active_record/associations/has_one_through_association.rb
challah-0.5.4 vendor/bundle/gems/activerecord-3.2.1/lib/active_record/associations/has_one_through_association.rb
activerecord-3.2.3 lib/active_record/associations/has_one_through_association.rb
activerecord-3.2.3.rc2 lib/active_record/associations/has_one_through_association.rb
activerecord-3.2.3.rc1 lib/active_record/associations/has_one_through_association.rb
challah-0.5.3 vendor/bundle/gems/activerecord-3.2.1/lib/active_record/associations/has_one_through_association.rb
challah-0.5.3 vendor/bundle/gems/activerecord-3.2.2/lib/active_record/associations/has_one_through_association.rb
challah-0.5.2 vendor/bundle/gems/activerecord-3.2.1/lib/active_record/associations/has_one_through_association.rb