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

Inherits:
EmbedsAny
  • Object
show all
Includes:
Singular
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

Methods included from Singular

#collection?

Methods inherited from EmbedsAny

#embedded?, #inspect, #klass

Methods inherited from Base

association_class, #belongs_to?, #build_association, #collection?, #default, generate_methods, #initialize, #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



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

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