diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2009-11-24 19:37:10 -0800 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2009-11-28 12:50:09 -0800 |
commit | 02893d17053123cbf02b65c2fe549421c11a2604 (patch) | |
tree | 54ca314de0a0d3f26f3662b19ee37e987a5ac16a /activesupport | |
parent | ddf681ce1d3e71aef913dd7f94c60b7622523f8b (diff) | |
download | rails-02893d17053123cbf02b65c2fe549421c11a2604.tar.gz rails-02893d17053123cbf02b65c2fe549421c11a2604.tar.bz2 rails-02893d17053123cbf02b65c2fe549421c11a2604.zip |
Remark that Listener is an implementation detail
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/notifications.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/notifications.rb b/activesupport/lib/active_support/notifications.rb index 09b1aa1713..316d80e064 100644 --- a/activesupport/lib/active_support/notifications.rb +++ b/activesupport/lib/active_support/notifications.rb @@ -163,7 +163,8 @@ module ActiveSupport @listeners.all? &:drained? end - class Listener + # Used for internal implementation only. + class Listener #:nodoc: def initialize(pattern, &block) @pattern = pattern @subscriber = block |