aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/core.rb
diff options
context:
space:
mode:
authorCohen Carlisle <cohen.carlisle@gmail.com>2016-10-19 20:51:00 -0400
committerCohen Carlisle <cohen.carlisle@gmail.com>2016-10-31 11:14:45 -0400
commit1d6b62026b3fbb17215b3a33c9606b5d9bd415dc (patch)
tree002aa675b65c76bdedc042ef6a3146e18620eed0 /activerecord/lib/active_record/core.rb
parent7056273845d5f8307f80b98e0ae7a39e6e95ba0b (diff)
downloadrails-1d6b62026b3fbb17215b3a33c9606b5d9bd415dc.tar.gz
rails-1d6b62026b3fbb17215b3a33c9606b5d9bd415dc.tar.bz2
rails-1d6b62026b3fbb17215b3a33c9606b5d9bd415dc.zip
allow ActiveRecord::Core#slice to use array arg
Diffstat (limited to 'activerecord/lib/active_record/core.rb')
-rw-r--r--activerecord/lib/active_record/core.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/core.rb b/activerecord/lib/active_record/core.rb
index d24bd4efa8..0a9c06ba59 100644
--- a/activerecord/lib/active_record/core.rb
+++ b/activerecord/lib/active_record/core.rb
@@ -538,7 +538,7 @@ module ActiveRecord
# Returns a hash of the given methods with their names as keys and returned values as values.
def slice(*methods)
- Hash[methods.map! { |method| [method, public_send(method)] }].with_indifferent_access
+ Hash[methods.flatten.map! { |method| [method, public_send(method)] }].with_indifferent_access
end
private