Class: ActiveRecord::Associations::BelongsToAssociation

Inherits:
SingularAssociation show all
Defined in:
lib/active_record/associations/belongs_to_association.rb

Overview

Active Record Belongs To Association

Direct Known Subclasses

BelongsToPolymorphicAssociation

Instance Attribute Summary

Attributes inherited from Association

#inversed, #owner, #reflection, #target

Instance Method Summary collapse

Methods inherited from SingularAssociation

#build, #force_reload_reader, #reader, #writer

Methods inherited from Association

#association_scope, #create, #create!, #extensions, #initialize, #initialize_attributes, #klass, #load_target, #loaded!, #loaded?, #marshal_dump, #marshal_load, #reload, #remove_inverse_instance, #reset_scope, #scope, #set_inverse_instance, #stale_target?, #target_scope

Constructor Details

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

Instance Method Details

#decrement_countersObject

:nodoc:



50
51
52
# File 'lib/active_record/associations/belongs_to_association.rb', line 50

def decrement_counters # :nodoc:
  update_counters(-1)
end

#default(&block) ⇒ Object



37
38
39
# File 'lib/active_record/associations/belongs_to_association.rb', line 37

def default(&block)
  writer(owner.instance_exec(&block)) if reader.nil?
end

#handle_dependencyObject

:nodoc:



7
8
9
10
11
12
13
14
15
16
17
# File 'lib/active_record/associations/belongs_to_association.rb', line 7

def handle_dependency
  return unless load_target

  case options[:dependent]
  when :destroy
    target.destroy
    raise ActiveRecord::Rollback unless target.destroyed?
  else
    target.send(options[:dependent])
  end
end

#increment_countersObject

:nodoc:



54
55
56
# File 'lib/active_record/associations/belongs_to_association.rb', line 54

def increment_counters # :nodoc:
  update_counters(1)
end

#replace(record) ⇒ Object



19
20
21
22
23
24
25
26
27
28
29
30
# File 'lib/active_record/associations/belongs_to_association.rb', line 19

def replace(record)
  if record
    raise_on_type_mismatch!(record)
    update_counters_on_replace(record)
    set_inverse_instance(record)
    @updated = true
  else
    decrement_counters
  end

  self.target = record
end

#resetObject



41
42
43
44
# File 'lib/active_record/associations/belongs_to_association.rb', line 41

def reset
  super
  @updated = false
end

#target=(record) ⇒ Object



32
33
34
35
# File 'lib/active_record/associations/belongs_to_association.rb', line 32

def target=(record)
  replace_keys(record)
  super
end

#updated?Boolean

Returns:

  • (Boolean)


46
47
48
# File 'lib/active_record/associations/belongs_to_association.rb', line 46

def updated?
  @updated
end