diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2013-04-16 05:44:37 -0700 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2013-04-16 05:44:37 -0700 |
commit | e63eb428b2dd73b393a7f834b8ddd46b6004c6ca (patch) | |
tree | 1c735165be3e10ec427c4e047ea7d0942abb42f6 /activesupport/CHANGELOG.md | |
parent | 41a90dd459b791c9dcb532ac0c98400081b63edd (diff) | |
parent | 5f07048dfdcc86bf78d0a498c5f23fa4dec917f7 (diff) | |
download | rails-e63eb428b2dd73b393a7f834b8ddd46b6004c6ca.tar.gz rails-e63eb428b2dd73b393a7f834b8ddd46b6004c6ca.tar.bz2 rails-e63eb428b2dd73b393a7f834b8ddd46b6004c6ca.zip |
Merge pull request #10218 from dasch/dasch/extract-subscriber-class
Extract a Subscriber base class from LogSubscriber
Diffstat (limited to 'activesupport/CHANGELOG.md')
-rw-r--r-- | activesupport/CHANGELOG.md | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md index 545a9ec0af..84a03825dc 100644 --- a/activesupport/CHANGELOG.md +++ b/activesupport/CHANGELOG.md @@ -1,5 +1,11 @@ ## Rails 4.0.0 (unreleased) ## +* An `ActiveSupport::Subscriber` class has been extracted from + `ActiveSupport::LogSubscriber`, allowing you to use the event attachment + API for other kinds of subscribers. + + *Daniel Schierbeck* + * `Class#class_attribute` accepts an `instance_predicate` option which defaults to `true`. If set to `false` the predicate method will not be defined. |