aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-03-22 12:41:34 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-03-22 12:41:34 +0000
commit6ad1b895f4a7a113ad372ce485ac20c762cc3c2c (patch)
tree2f65df256783d1d1b302bcdde207ccd0e72e7a89 /activesupport
parent4e60fe3ef3474834a9880f3cdd2a47f8efa99bc5 (diff)
downloadrails-6ad1b895f4a7a113ad372ce485ac20c762cc3c2c.tar.gz
rails-6ad1b895f4a7a113ad372ce485ac20c762cc3c2c.tar.bz2
rails-6ad1b895f4a7a113ad372ce485ac20c762cc3c2c.zip
Updated more documentation
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@975 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/CHANGELOG14
1 files changed, 14 insertions, 0 deletions
diff --git a/activesupport/CHANGELOG b/activesupport/CHANGELOG
index 6bd2d81f72..42b01c05be 100644
--- a/activesupport/CHANGELOG
+++ b/activesupport/CHANGELOG
@@ -1,3 +1,17 @@
+*1.0.2*
+
+* Added Kernel#returning -- a Ruby-ized realization of the K combinator, courtesy of Mikael Brockman.
+
+ def foo
+ returning values = [] do
+ values << 'bar'
+ values << 'baz'
+ end
+ end
+
+ foo # => ['bar', 'baz']
+
+
*1.0.1* (7th March, 2005)
* Fixed Hash#indifferent_access to also deal with include? and fetch and nested hashes #726 [Nicholas Seckar]