ruby-changes:8959
From: matz <ko1@a...>
Date: Thu, 4 Dec 2008 16:27:46 +0900 (JST)
Subject: [ruby-changes:8959] Ruby:r20495 (ruby_1_8): * lib/gserver.rb: fixed type in sample code. a report from Oleg
matz 2008-12-04 16:27:34 +0900 (Thu, 04 Dec 2008) New Revision: 20495 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=20495 Log: * lib/gserver.rb: fixed type in sample code. a report from Oleg Puchinin. Modified files: branches/ruby_1_8/ChangeLog branches/ruby_1_8/lib/gserver.rb Index: ruby_1_8/ChangeLog =================================================================== --- ruby_1_8/ChangeLog (revision 20494) +++ ruby_1_8/ChangeLog (revision 20495) @@ -4,6 +4,11 @@ OpenSSL::SSL::SSLSocket should implement read_nonblock. a patch from Aaron Patterson in [ruby-core:20277]. fix: #814 [ruby-core:20241] +Thu Dec 4 16:16:09 2008 Yukihiro Matsumoto <matz@r...> + + * lib/gserver.rb: fixed type in sample code. a report from Oleg + Puchinin. + Thu Dec 4 06:04:16 2008 Hidetoshi NAGAI <nagai@a...> * ext/tk/lib/tk/menu.rb: TkOptionMenubutton.new fails to treat Index: ruby_1_8/lib/gserver.rb =================================================================== --- ruby_1_8/lib/gserver.rb (revision 20494) +++ ruby_1_8/lib/gserver.rb (revision 20495) @@ -40,7 +40,7 @@ # super(port, *args) # end # def serve(io) -# io.puts(Time.now.to_i) +# io.puts(Time.now.to_s) # end # end # -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/