From 52547f53314a52de14d90befb90f4364d800671e Mon Sep 17 00:00:00 2001 From: Rick Olson Date: Sat, 30 Sep 2006 01:37:07 +0000 Subject: Add an attribute reader method for ActiveRecord::Base.observers [Rick Olson] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5211 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- activerecord/CHANGELOG | 2 ++ activerecord/lib/active_record/observer.rb | 8 ++++++++ 2 files changed, 10 insertions(+) (limited to 'activerecord') diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG index 5d437a3e70..e62d77a60d 100644 --- a/activerecord/CHANGELOG +++ b/activerecord/CHANGELOG @@ -1,5 +1,7 @@ *SVN* +* Add an attribute reader method for ActiveRecord::Base.observers [Rick Olson] + * Deprecation: count class method should be called with an options hash rather than two args for conditions and joins. #6287 [Bob Silva] * has_one associations with a nil target may be safely marshaled. #6279 [norbauer, Jeremy Kemper] diff --git a/activerecord/lib/active_record/observer.rb b/activerecord/lib/active_record/observer.rb index b472423b88..ace52ef415 100644 --- a/activerecord/lib/active_record/observer.rb +++ b/activerecord/lib/active_record/observer.rb @@ -18,10 +18,18 @@ module ActiveRecord # # # Same as above, just using explicit class references # ActiveRecord::Base.observers = Cacher, GarbageCollector + # + # Note: Setting this does not instantiate the observers yet. #instantiate_observers is + # called during startup, and before each development request. def observers=(*observers) @observers = observers.flatten end + # Gets the current observers. + def observers + @observers ||= [] + end + # Instantiate the global ActiveRecord observers def instantiate_observers return if @observers.blank? -- cgit v1.2.3