Class: ActiveFedora::Associations::SingularAssociation

Inherits:
Association
  • Object
show all
Defined in:
lib/active_fedora/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

#association_scope, #initialize, #initialize_attributes, #load_target, #loaded!, #loaded?, #reload, #reset, #reset_scope, #scope, #set_inverse_instance, #stale_target?, #target_scope

Constructor Details

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

Instance Method Details

#build(attributes = {}) ⇒ Object



30
31
32
# File 'lib/active_fedora/associations/singular_association.rb', line 30

def build(attributes = {})
  new_record(:build, attributes)
end

#create(attributes = {}) ⇒ Object



22
23
24
# File 'lib/active_fedora/associations/singular_association.rb', line 22

def create(attributes = {})
  new_record(:create, attributes)
end

#create!(attributes = {}) ⇒ Object



26
27
28
# File 'lib/active_fedora/associations/singular_association.rb', line 26

def create!(attributes = {})
  build(attributes).tap(&:save!)
end

#reader(force_reload = false) ⇒ Object

Implements the reader method, e.g. foo.bar for Foo.has_one :bar rubocop:disable Style/GuardClause



6
7
8
9
10
11
12
13
14
# File 'lib/active_fedora/associations/singular_association.rb', line 6

def reader(force_reload = false)
  if force_reload
    raise NotImplementedError, "Need to define the uncached method" # TODO
    # klass.uncached { reload }
  elsif !loaded? || stale_target?
    reload
  end
  target
end

#writer(record) ⇒ Object

Implements the writer method, e.g. foo.items= for Foo.has_many :items



18
19
20
# File 'lib/active_fedora/associations/singular_association.rb', line 18

def writer(record)
  replace(record)
end