aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/CHANGELOG
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2005-11-23 21:31:51 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2005-11-23 21:31:51 +0000
commitb94d6c06549b83aa2e97fa80d86f99ee81729775 (patch)
treece729d0b044b0c85a13b24d9f4ef4b5bf2181d05 /activesupport/CHANGELOG
parentc66ac2102be2d7a53872c7bb96939f616275010e (diff)
downloadrails-b94d6c06549b83aa2e97fa80d86f99ee81729775.tar.gz
rails-b94d6c06549b83aa2e97fa80d86f99ee81729775.tar.bz2
rails-b94d6c06549b83aa2e97fa80d86f99ee81729775.zip
Enable warnings on first load only. File which are loaded but raise an exception are not added to loaded set.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3169 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/CHANGELOG')
-rw-r--r--activesupport/CHANGELOG2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/CHANGELOG b/activesupport/CHANGELOG
index e8ef43acc2..5731d94911 100644
--- a/activesupport/CHANGELOG
+++ b/activesupport/CHANGELOG
@@ -2,7 +2,7 @@
* Active Support is warnings-safe. #1792 [Eric Hodel]
-* Introduce enable_warnings counterpart to silence_warnings. Turn warnings on when loading a file if Dependencies.mechanism == :load. Common mistakes such as redefined methods will print warnings to stderr. [Jeremy Kemper]
+* Introduce enable_warnings counterpart to silence_warnings. Turn warnings on when loading a file for the first time if Dependencies.mechanism == :load. Common mistakes such as redefined methods will print warnings to stderr. [Jeremy Kemper]
* Add Symbol#to_proc, which allows for, e.g. [:foo, :bar].map(&:to_s). [Marcel Molina Jr.]