diff options
author | Erik Michaels-Ober <sferik@gmail.com> | 2014-10-13 11:47:16 +0100 |
---|---|---|
committer | Erik Michaels-Ober <sferik@gmail.com> | 2014-10-13 11:47:16 +0100 |
commit | 8bb33e920a8627d38d52c1faa6dfd620d6799582 (patch) | |
tree | 1aac3dee92766b5eb8d7281e7e5956eac16c3eee /activesupport/lib/active_support | |
parent | 996aab576eefb351025ae1d56371f41a0eb074c5 (diff) | |
download | rails-8bb33e920a8627d38d52c1faa6dfd620d6799582.tar.gz rails-8bb33e920a8627d38d52c1faa6dfd620d6799582.tar.bz2 rails-8bb33e920a8627d38d52c1faa6dfd620d6799582.zip |
Replace Enumerable#reverse.each with Enumerable#reverse_each
Diffstat (limited to 'activesupport/lib/active_support')
-rw-r--r-- | activesupport/lib/active_support/callbacks.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/callbacks.rb b/activesupport/lib/active_support/callbacks.rb index 4bc13f20ca..45231bc101 100644 --- a/activesupport/lib/active_support/callbacks.rb +++ b/activesupport/lib/active_support/callbacks.rb @@ -559,7 +559,7 @@ module ActiveSupport # This is used internally to append, prepend and skip callbacks to the # CallbackChain. def __update_callbacks(name) #:nodoc: - ([self] + ActiveSupport::DescendantsTracker.descendants(self)).reverse.each do |target| + ([self] + ActiveSupport::DescendantsTracker.descendants(self)).reverse_each do |target| chain = target.get_callbacks name yield target, chain.dup end |