diff options
author | Guo Xiang Tan <tgx_world@hotmail.com> | 2014-06-01 13:40:07 -0700 |
---|---|---|
committer | Guo Xiang Tan <tgx_world@hotmail.com> | 2014-06-01 13:48:24 -0700 |
commit | a67fdc0256a88eeabd6cef6743bb480c9889642f (patch) | |
tree | 475829c351285a93f2c6eac9332062b9838df7f5 /activesupport/lib/active_support/notifications | |
parent | 02ee081cd645b51cbdfb28cd305777d3257ad871 (diff) | |
download | rails-a67fdc0256a88eeabd6cef6743bb480c9889642f.tar.gz rails-a67fdc0256a88eeabd6cef6743bb480c9889642f.tar.bz2 rails-a67fdc0256a88eeabd6cef6743bb480c9889642f.zip |
Update documentation to reflect unsubscription with name.
Diffstat (limited to 'activesupport/lib/active_support/notifications')
-rw-r--r-- | activesupport/lib/active_support/notifications/fanout.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/notifications/fanout.rb b/activesupport/lib/active_support/notifications/fanout.rb index 8f5fa646e8..5f0bc3dca0 100644 --- a/activesupport/lib/active_support/notifications/fanout.rb +++ b/activesupport/lib/active_support/notifications/fanout.rb @@ -25,9 +25,9 @@ module ActiveSupport subscriber end - def unsubscribe(subscriber) + def unsubscribe(subscriber_or_name) synchronize do - @subscribers.reject! { |s| s.matches?(subscriber) } + @subscribers.reject! { |s| s.matches?(subscriber_or_name) } @listeners_for.clear end end |