aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/CHANGELOG
diff options
context:
space:
mode:
authorSam Stephenson <sam@37signals.com>2005-11-07 00:37:32 +0000
committerSam Stephenson <sam@37signals.com>2005-11-07 00:37:32 +0000
commit645de3391276a654ab4a653f5bbe47efc5759b77 (patch)
tree66b9c0f839d25f34a0575c4034d3d01a71bd1175 /activesupport/CHANGELOG
parent49c801b71d425543ae88e171b969b3316f022c2a (diff)
downloadrails-645de3391276a654ab4a653f5bbe47efc5759b77.tar.gz
rails-645de3391276a654ab4a653f5bbe47efc5759b77.tar.bz2
rails-645de3391276a654ab4a653f5bbe47efc5759b77.zip
Added Kernel#silence_stderr to silence stderr for the duration of the given block. Changed Kernel#` to print a message to stderr (like Unix) instead of raising Errno::ENOENT on Win32.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2899 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/CHANGELOG')
-rw-r--r--activesupport/CHANGELOG4
1 files changed, 4 insertions, 0 deletions
diff --git a/activesupport/CHANGELOG b/activesupport/CHANGELOG
index be4ed83c54..faf281f0a5 100644
--- a/activesupport/CHANGELOG
+++ b/activesupport/CHANGELOG
@@ -1,5 +1,9 @@
*SVN*
+* Added Kernel#silence_stderr to silence stderr for the duration of the given block [Sam Stephenson]
+
+* Changed Kernel#` to print a message to stderr (like Unix) instead of raising Errno::ENOENT on Win32 [Sam Stephenson]
+
* Changed 0.blank? to false rather than true since it violates everyone's expectation of blankness. #2518, #2705 [rails@jeffcole.net]
* When loading classes using const_missing, raise a NameError if and only if the file we tried to load was not present. [Nicholas Seckar]