Class: ActiveData::Model::Associations::Reflections::EmbedsMany
- Defined in:
- lib/active_data/model/associations/reflections/embeds_many.rb
Direct Known Subclasses
Constant Summary
Constants inherited from Base
Instance Attribute Summary
Attributes inherited from Base
#name, #options, #parent_reflection
Class Method Summary collapse
Methods inherited from EmbedsAny
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
6 7 8 9 10 |
# File 'lib/active_data/model/associations/reflections/embeds_many.rb', line 6 def self.build(target, generated_methods, name, = {}, &block) target.add_attribute(ActiveData::Model::Attributes::Reflections::Base, name) if target < ActiveData::Model::Attributes [:validate] = true unless .key?(:validate) super end |