aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2013-05-13 16:17:29 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2013-05-13 16:41:43 -0700
commit877964dc61d56f7579871ad434622748f4e208f9 (patch)
tree241d091bbbe0eb3feab6dfacc773a83766016fd9 /activesupport/lib
parent9caf0cf9c8c7b42737ae78c470a5dd2f583ada75 (diff)
downloadrails-877964dc61d56f7579871ad434622748f4e208f9.tar.gz
rails-877964dc61d56f7579871ad434622748f4e208f9.tar.bz2
rails-877964dc61d56f7579871ad434622748f4e208f9.zip
Arrays are no longer supported
Diffstat (limited to 'activesupport/lib')
-rw-r--r--activesupport/lib/active_support/callbacks.rb4
1 files changed, 0 insertions, 4 deletions
diff --git a/activesupport/lib/active_support/callbacks.rb b/activesupport/lib/active_support/callbacks.rb
index d175465d4d..6ffe8a750d 100644
--- a/activesupport/lib/active_support/callbacks.rb
+++ b/activesupport/lib/active_support/callbacks.rb
@@ -229,9 +229,6 @@ module ActiveSupport
# Filters support:
#
- # Arrays:: Used in conditions. This is used to specify
- # multiple conditions. Used internally to
- # merge conditions from skip_* filters.
# Symbols:: A method to call.
# Strings:: Some content to evaluate.
# Procs:: A proc to call with the object.
@@ -240,7 +237,6 @@ module ActiveSupport
# All of these objects are compiled into methods and handled
# the same after this point:
#
- # Arrays:: Merged together into a single filter.
# Symbols:: Already methods.
# Strings:: class_eval'ed into methods.
# Procs:: define_method'ed into methods.