Module: ActiveRecord::SpawnMethods
- Included in:
- Relation
- Defined in:
- lib/active_record/relation/spawn_methods.rb
Instance Method Summary collapse
-
#except(*skips) ⇒ Object
Removes from the query the condition(s) specified in
skips
. -
#merge(other) ⇒ Object
Merges in the conditions from
other
, ifother
is anActiveRecord::Relation
. -
#merge!(other) ⇒ Object
:nodoc:.
-
#only(*onlies) ⇒ Object
Removes any condition from the query other than the one(s) specified in
onlies
. -
#spawn ⇒ Object
This is overridden by Associations::CollectionProxy.
Instance Method Details
#except(*skips) ⇒ Object
Removes from the query the condition(s) specified in skips
.
Post.order('id asc').except(:order) # discards the order condition
Post.where('id > 10').order('id asc').except(:where) # discards the where condition but keeps the order
52 53 54 |
# File 'lib/active_record/relation/spawn_methods.rb', line 52 def except(*skips) relation_with values.except(*skips) end |
#merge(other) ⇒ Object
Merges in the conditions from other
, if other
is an ActiveRecord::Relation
. Returns an array representing the intersection of the resulting records with other
, if other
is an array.
Post.where(published: true).joins(:comments).merge( Comment.where(spam: false) )
# Performs a single join query with both where conditions.
recent_posts = Post.order('created_at DESC').first(5)
Post.where(published: true).merge(recent_posts)
# Returns the intersection of all published posts with the 5 most recently created posts.
# (This is just an example. You'd probably want to do this with a single query!)
Procs will be evaluated by merge:
Post.where(published: true).merge(-> { joins(:comments) })
# => Post.where(published: true).joins(:comments)
This is mainly intended for sharing common conditions between multiple associations.
29 30 31 32 33 34 35 36 37 |
# File 'lib/active_record/relation/spawn_methods.rb', line 29 def merge(other) if other.is_a?(Array) to_a & other elsif other spawn.merge!(other) else self end end |
#merge!(other) ⇒ Object
:nodoc:
39 40 41 42 43 44 45 46 |
# File 'lib/active_record/relation/spawn_methods.rb', line 39 def merge!(other) # :nodoc: if !other.is_a?(Relation) && other.respond_to?(:to_proc) instance_exec(&other) else klass = other.is_a?(Hash) ? Relation::HashMerger : Relation::Merger klass.new(self, other).merge end end |
#only(*onlies) ⇒ Object
Removes any condition from the query other than the one(s) specified in onlies
.
Post.order('id asc').only(:where) # discards the order condition
Post.order('id asc').only(:where, :order) # uses the specified order
60 61 62 |
# File 'lib/active_record/relation/spawn_methods.rb', line 60 def only(*onlies) relation_with values.slice(*onlies) end |
#spawn ⇒ Object
This is overridden by Associations::CollectionProxy
9 10 11 |
# File 'lib/active_record/relation/spawn_methods.rb', line 9 def spawn #:nodoc: clone end |