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
fc-webicons-0.0.1 vendor/bundle/ruby/1.9.1/gems/activerecord-3.2.13/lib/active_record/associations/has_one_through_association.rb
activerecord-3.2.13 lib/active_record/associations/has_one_through_association.rb
activerecord-3.1.12 lib/active_record/associations/has_one_through_association.rb
activerecord-3.2.13.rc2 lib/active_record/associations/has_one_through_association.rb
activerecord-3.2.13.rc1 lib/active_record/associations/has_one_through_association.rb
active_mailer-0.0.5 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/activerecord-3.2.12/lib/active_record/associations/has_one_through_association.rb
active_mailer-0.0.4 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/activerecord-3.2.12/lib/active_record/associations/has_one_through_association.rb
active_mailer-0.0.3 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/activerecord-3.2.12/lib/active_record/associations/has_one_through_association.rb
activerecord-3.2.12 lib/active_record/associations/has_one_through_association.rb
activerecord-3.1.11 lib/active_record/associations/has_one_through_association.rb
challah-0.9.1.beta.3 vendor/bundle/gems/activerecord-3.2.11/lib/active_record/associations/has_one_through_association.rb
devise_sociable-0.1.0 vendor/bundle/gems/activerecord-3.2.11/lib/active_record/associations/has_one_through_association.rb
challah-0.9.1.beta vendor/bundle/gems/activerecord-3.2.11/lib/active_record/associations/has_one_through_association.rb
activerecord-3.2.11 lib/active_record/associations/has_one_through_association.rb
activerecord-3.1.10 lib/active_record/associations/has_one_through_association.rb
sunrise-cms-0.5.0.rc1 vendor/bundle/ruby/1.9.1/gems/activerecord-3.2.10/lib/active_record/associations/has_one_through_association.rb
challah-0.9.0 vendor/bundle/gems/activerecord-3.2.9/lib/active_record/associations/has_one_through_association.rb
activerecord-3.2.10 lib/active_record/associations/has_one_through_association.rb
activerecord-3.1.9 lib/active_record/associations/has_one_through_association.rb
dirty_history-0.7.3 dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/associations/has_one_through_association.rb