aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/relation/spawn_methods.rb
diff options
context:
space:
mode:
authorAngelo capilleri <capilleri@yahoo.com>2012-12-31 11:23:19 +0100
committerAngelo Capilleri <capilleri@yahoo.com>2012-12-31 18:45:11 +0100
commit1564b085e2bbf4e9d1077be95b94d70990e18e3f (patch)
treec495e4d769f1ac2dc8e73619cd9a7fbed7ab6921 /activerecord/lib/active_record/relation/spawn_methods.rb
parent2b773e148b56e0cff3b07ef1902311688fb9fed8 (diff)
downloadrails-1564b085e2bbf4e9d1077be95b94d70990e18e3f.tar.gz
rails-1564b085e2bbf4e9d1077be95b94d70990e18e3f.tar.bz2
rails-1564b085e2bbf4e9d1077be95b94d70990e18e3f.zip
refatctoring of some code repetition in spawn_methods
Diffstat (limited to 'activerecord/lib/active_record/relation/spawn_methods.rb')
-rw-r--r--activerecord/lib/active_record/relation/spawn_methods.rb18
1 files changed, 10 insertions, 8 deletions
diff --git a/activerecord/lib/active_record/relation/spawn_methods.rb b/activerecord/lib/active_record/relation/spawn_methods.rb
index d417e82548..de784f9f57 100644
--- a/activerecord/lib/active_record/relation/spawn_methods.rb
+++ b/activerecord/lib/active_record/relation/spawn_methods.rb
@@ -50,10 +50,7 @@ module ActiveRecord
# 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
def except(*skips)
- result = Relation.new(klass, table, values.except(*skips))
- result.default_scoped = default_scoped
- result.extend(*extending_values) if extending_values.any?
- result
+ relation_with values.except(*skips)
end
# Removes any condition from the query other than the one(s) specified in +onlies+.
@@ -61,11 +58,16 @@ module ActiveRecord
# Post.order('id asc').only(:where) # discards the order condition
# Post.order('id asc').only(:where, :order) # uses the specified order
def only(*onlies)
- result = Relation.new(klass, table, values.slice(*onlies))
- result.default_scoped = default_scoped
- result.extend(*extending_values) if extending_values.any?
- result
+ relation_with values.slice(*onlies)
end
+ private
+
+ def relation_with(values) # :nodoc:
+ result = Relation.new(klass, table, values)
+ result.default_scoped = default_scoped
+ result.extend(*extending_values) if extending_values.any?
+ result
+ end
end
end