aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/relation/spawn_methods.rb
diff options
context:
space:
mode:
authorMitch Crowe <crowe.mitch@gmail.com>2012-04-17 18:56:33 -0700
committerMitch Crowe <crowe.mitch@gmail.com>2012-04-17 18:56:33 -0700
commit43946ee89172e743354adda9d13cdf5232ce3b58 (patch)
tree747e9cf8013da28c3924384857cd04d36f43d463 /activerecord/lib/active_record/relation/spawn_methods.rb
parente9f778af9a1bd531cc2fa4b72aea2d106f74371f (diff)
downloadrails-43946ee89172e743354adda9d13cdf5232ce3b58.tar.gz
rails-43946ee89172e743354adda9d13cdf5232ce3b58.tar.bz2
rails-43946ee89172e743354adda9d13cdf5232ce3b58.zip
Add documentation to the SpawnMethods#merge method.
Diffstat (limited to 'activerecord/lib/active_record/relation/spawn_methods.rb')
-rw-r--r--activerecord/lib/active_record/relation/spawn_methods.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/activerecord/lib/active_record/relation/spawn_methods.rb b/activerecord/lib/active_record/relation/spawn_methods.rb
index 7bf9c16959..1d2151fdb2 100644
--- a/activerecord/lib/active_record/relation/spawn_methods.rb
+++ b/activerecord/lib/active_record/relation/spawn_methods.rb
@@ -5,6 +5,20 @@ require 'active_record/relation/merger'
module ActiveRecord
module SpawnMethods
+
+ # Merges in the conditions from <tt>other</tt>, if <tt>other</tt> is an <tt>ActiveRecord::Relation</tt>.
+ # Returns an array representing the union of the resulting records with <tt>other</tt>, if <tt>other</tt> is an array.
+ #
+ # ==== Examples
+ #
+ # 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 union 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!)
+ #
def merge(other)
if other.is_a?(Array)
to_a & other