Class: ActiveData::Model::Associations::Reflections::EmbedsOne

Inherits:
Base
  • Object
show all
Defined in:
lib/active_data/model/associations/reflections/embeds_one.rb

Constant Summary

Constants inherited from Base

Base::READ, Base::WRITE

Instance Attribute Summary

Attributes inherited from Base

#name, #options, #parent_reflection

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Base

association_class, #belongs_to?, #build_association, #default, #initialize, #inspect, #klass, #macro, #read_source, #write_source

Constructor Details

This class inherits a constructor from ActiveData::Model::Associations::Reflections::Base

Class Method Details

.build(target, generated_methods, name, options = {}, &block) ⇒ Object



6
7
8
9
10
11
12
# File 'lib/active_data/model/associations/reflections/embeds_one.rb', line 6

def self.build target, generated_methods, name, options = {}, &block
  if target < ActiveData::Model::Attributes
    target.add_attribute(ActiveData::Model::Attributes::Reflections::Base, name)
  end
  options[:validate] = true unless options.key?(:validate)
  super
end

.generate_methods(name, target) ⇒ Object



14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# File 'lib/active_data/model/associations/reflections/embeds_one.rb', line 14

def self.generate_methods name, target
  target.class_eval "    def \#{name} force_reload = false\n      association(:\#{name}).reader(force_reload)\n    end\n\n    def \#{name}= value\n      association(:\#{name}).writer(value)\n    end\n\n    def build_\#{name} attributes = {}\n      association(:\#{name}).build(attributes)\n    end\n\n    def create_\#{name} attributes = {}\n      association(:\#{name}).create(attributes)\n    end\n\n    def create_\#{name}! attributes = {}\n      association(:\#{name}).create!(attributes)\n    end\n  RUBY\nend\n", __FILE__, __LINE__ + 1

Instance Method Details

#collection?Boolean



38
39
40
# File 'lib/active_data/model/associations/reflections/embeds_one.rb', line 38

def collection?
  false
end

#embedded?Boolean



42
43
44
# File 'lib/active_data/model/associations/reflections/embeds_one.rb', line 42

def embedded?
  true
end