Class: ActiveRecord::Associations::HasOneAssociation

Inherits:
BelongsToAssociation show all
Defined in:
lib/active_record/associations/has_one_association.rb

Overview

:nodoc:

Instance Attribute Summary

Attributes inherited from AssociationProxy

#reflection

Instance Method Summary collapse

Methods inherited from BelongsToAssociation

#updated?

Methods inherited from AssociationProxy

#===, #aliased_table_name, #conditions, #inspect, #loaded, #loaded?, #proxy_owner, #proxy_reflection, #proxy_respond_to?, #proxy_target, #reload, #reset, #respond_to?, #target, #target=

Constructor Details

#initialize(owner, reflection) ⇒ HasOneAssociation

Returns a new instance of HasOneAssociation.



4
5
6
7
# File 'lib/active_record/associations/has_one_association.rb', line 4

def initialize(owner, reflection)
  super
  construct_sql
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class ActiveRecord::Associations::AssociationProxy

Instance Method Details

#build(attrs = {}, replace_existing = true) ⇒ Object



17
18
19
# File 'lib/active_record/associations/has_one_association.rb', line 17

def build(attrs = {}, replace_existing = true)
  new_record(replace_existing) { |klass| klass.new(attrs) }
end

#create(attrs = {}, replace_existing = true) ⇒ Object



9
10
11
# File 'lib/active_record/associations/has_one_association.rb', line 9

def create(attrs = {}, replace_existing = true)
  new_record(replace_existing) { |klass| klass.create(attrs) }
end

#create!(attrs = {}, replace_existing = true) ⇒ Object



13
14
15
# File 'lib/active_record/associations/has_one_association.rb', line 13

def create!(attrs = {}, replace_existing = true)
  new_record(replace_existing) { |klass| klass.create!(attrs) }
end

#replace(obj, dont_save = false) ⇒ Object



21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# File 'lib/active_record/associations/has_one_association.rb', line 21

def replace(obj, dont_save = false)
  load_target

  unless @target.nil?
    if dependent? && !dont_save && @target != obj
      @target.destroy unless @target.new_record?
      @owner.clear_association_cache
    else
      @target[@reflection.primary_key_name] = nil
      @target.save unless @owner.new_record? || @target.new_record?
    end
  end

  if obj.nil?
    @target = nil
  else
    raise_on_type_mismatch(obj)
    set_belongs_to_association_for(obj)
    @target = (AssociationProxy === obj ? obj.target : obj)
  end

  @loaded = true

  unless @owner.new_record? or obj.nil? or dont_save
    return (obj.save ? self : false)
  else
    return (obj.nil? ? nil : self)
  end
end