From c8e8fa7d9134f3a54e3035170d7846923d6212c5 Mon Sep 17 00:00:00 2001 From: eban Date: Mon, 14 Jan 2008 13:35:51 +0000 Subject: * golf_prelude.rb: Shorter method name completion. Same method used for const missing. do_while and do_until added. Enumerator gains all of Array's abilities. Ex: '123'.m{|i|i*2} #=> "112233" '123'.pe #=> '123'.perm*' ' #=> "123 132 213 231 312 321" base on a patch from Darren Smith . git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@15046 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 19a9db3f3..92ebac53e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +Mon Jan 14 22:25:02 2008 WATANABE Hirofumi + + * golf_prelude.rb: Shorter method name completion. Same method + used for const missing. do_while and do_until added. Enumerator + gains all of Array's abilities. Ex: + '123'.m{|i|i*2} #=> "112233" + '123'.pe #=> '123'.perm*' ' #=> "123 132 213 231 312 321" + base on a patch from Darren Smith . + Mon Jan 14 21:10:02 2008 Yukihiro Matsumoto * enc/us_ascii.c: wrong alias name: ANSI_X3.4-1986. -- cgit