Class: ROM::SQL::Plugin::Associates::AssociateOptions Private
- Inherits:
-
Object
- Object
- ROM::SQL::Plugin::Associates::AssociateOptions
- Defined in:
- lib/rom/sql/plugin/associates.rb
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Instance Attribute Summary collapse
- #assoc ⇒ Object readonly private
- #name ⇒ Object readonly private
- #opts ⇒ Object readonly private
Instance Method Summary collapse
- #after? ⇒ Boolean private
-
#initialize(name, relation, opts) ⇒ AssociateOptions
constructor
private
A new instance of AssociateOptions.
- #to_hash ⇒ Object private
Constructor Details
#initialize(name, relation, opts) ⇒ AssociateOptions
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a new instance of AssociateOptions.
16 17 18 19 20 21 |
# File 'lib/rom/sql/plugin/associates.rb', line 16 def initialize(name, relation, opts) @name = name @assoc = relation.associations[name] @opts = { assoc: assoc, keys: assoc.join_keys } @opts.update(parent: opts[:parent]) if opts[:parent] end |
Instance Attribute Details
#assoc ⇒ Object (readonly)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
13 14 15 |
# File 'lib/rom/sql/plugin/associates.rb', line 13 def assoc @assoc end |
#name ⇒ Object (readonly)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
13 14 15 |
# File 'lib/rom/sql/plugin/associates.rb', line 13 def name @name end |
#opts ⇒ Object (readonly)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
13 14 15 |
# File 'lib/rom/sql/plugin/associates.rb', line 13 def opts @opts end |
Instance Method Details
#after? ⇒ Boolean
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
23 24 25 |
# File 'lib/rom/sql/plugin/associates.rb', line 23 def after? assoc.is_a?(SQL::Associations::ManyToMany) end |
#to_hash ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
27 28 29 |
# File 'lib/rom/sql/plugin/associates.rb', line 27 def to_hash { associate: opts } end |