Class: ActiveRecord::Associations::SingularAssociation

Inherits:
Association show all
Defined in:
activerecord/lib/active_record/associations/singular_association.rb

Overview

:nodoc:

Instance Attribute Summary

Attributes inherited from Association

#inversed, #owner, #reflection, #target

Instance Method Summary collapse

Methods inherited from Association

#aliased_table_name, #association_scope, #initialize, #initialize_attributes, #interpolate, #klass, #load_target, #loaded!, #loaded?, #marshal_dump, #marshal_load, #reload, #reset, #reset_scope, #scope, #set_inverse_instance, #stale_target?, #target_scope

Constructor Details

This class inherits a constructor from ActiveRecord::Associations::Association

Instance Method Details

#build(attributes = {}) {|record| ... } ⇒ Object

Yields:

  • (record)


28
29
30
31
32
33
# File 'activerecord/lib/active_record/associations/singular_association.rb', line 28

def build(attributes = {})
  record = build_record(attributes)
  yield(record) if block_given?
  set_new_record(record)
  record
end

#create(attributes = {}, &block) ⇒ Object



20
21
22
# File 'activerecord/lib/active_record/associations/singular_association.rb', line 20

def create(attributes = {}, &block)
  _create_record(attributes, &block)
end

#create!(attributes = {}, &block) ⇒ Object



24
25
26
# File 'activerecord/lib/active_record/associations/singular_association.rb', line 24

def create!(attributes = {}, &block)
  _create_record(attributes, true, &block)
end

#reader(force_reload = false) ⇒ Object

Implements the reader method, e.g. foo.bar for Foo.has_one :bar



5
6
7
8
9
10
11
12
13
# File 'activerecord/lib/active_record/associations/singular_association.rb', line 5

def reader(force_reload = false)
  if force_reload
    klass.uncached { reload }
  elsif !loaded? || stale_target?
    reload
  end

  target
end

#writer(record) ⇒ Object

Implements the writer method, e.g. foo.bar= for Foo.belongs_to :bar



16
17
18
# File 'activerecord/lib/active_record/associations/singular_association.rb', line 16

def writer(record)
  replace(record)
end