1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* lib/delegate.rb: document update from James Edward Gray II

<james@grayproductions.net>.  [ruby-core:06027]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@9329 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2005-09-28 14:23:24 +00:00
parent 74b0a54e38
commit 74e81f5ed7
3 changed files with 7 additions and 0 deletions

View file

@ -1,3 +1,8 @@
Wed Sep 28 23:09:23 2005 Yukihiro Matsumoto <matz@ruby-lang.org>
* lib/delegate.rb: document update from James Edward Gray II
<james@grayproductions.net>. [ruby-core:06027]
Wed Sep 28 15:14:19 2005 GOTOU Yuuzou <gotoyuzo@notwork.org>
* lib/webrick/cgi.rb (WEBrick::CGI#start): req.query_string should

View file

@ -18,6 +18,7 @@ erb.rb
English.rb
fileutils.rb
find.rb
forwardable.rb
generator.rb
logger.rb
matrix.rb

View file

@ -195,6 +195,7 @@ end
#
class SimpleDelegator<Delegator
# Pass in the _obj_ you would like to delegate method calls to.
def initialize(obj)
super
@_sd_obj = obj