From f7297292f3e8c823b00aaba12557c715123e5e0a Mon Sep 17 00:00:00 2001 From: kou Date: Sat, 17 Jun 2006 01:28:46 +0000 Subject: * lib/rss/rss.rb (Kernel#funcall): removed. * lib/rss/parser.rb (Kernel.URI): removed. * lib/rss/maker/: supported xxx.new_yyy do |yyy| yyy.zzz = zzz ... end style and this style became the style of the recommendation. Old style yyy = xxx.new_yyy yyy.zzz = zzz ... is supported too but this style isn't recommended. [ruby-talk:197284] * test/rss/test_*maker*.rb: used new recommended style. git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@10300 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 637311ffa..cc0e247fb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,24 @@ +Sat Jun 17 10:23:22 2006 Kouhei Sutou + + * lib/rss/rss.rb (Kernel#funcall): removed. + * lib/rss/parser.rb (Kernel.URI): removed. + + * lib/rss/maker/: supported + xxx.new_yyy do |yyy| + yyy.zzz = zzz + ... + end + style and this style became the style of the recommendation. + + Old style + yyy = xxx.new_yyy + yyy.zzz = zzz + ... + is supported too but this style isn't recommended. + [ruby-talk:197284] + + * test/rss/test_*maker*.rb: used new recommended style. + Sat Jun 17 09:03:47 2006 Kouhei Sutou * lib/rss, test/rss: backported from trunk. (2005-11-16 - now) -- cgit