diff options
author | zzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-07-23 00:28:24 +0000 |
---|---|---|
committer | zzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-07-23 00:28:24 +0000 |
commit | 982245a6237145595fd9b04d9e7d4ba25ef695ea (patch) | |
tree | 195a3466417f849d13bbe3825e6aecb46c8af507 | |
parent | bdbef403a122237d032af0697d375f135f1a69a3 (diff) |
* lib/drb/invokemethod.rb: [DOC] nodoc InvokeMethod18Mixin
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42127 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | lib/drb/invokemethod.rb | 4 |
2 files changed, 6 insertions, 2 deletions
@@ -1,3 +1,7 @@ +Tue Jul 23 09:28:05 2013 Zachary Scott <[email protected]> + + * lib/drb/invokemethod.rb: [DOC] nodoc InvokeMethod18Mixin + Tue Jul 23 08:44:37 2013 Eric Hodel <[email protected]> * ext/openssl/ossl_asn1.c (asn1time_to_time): Implement YYMMDDhhmmZ diff --git a/lib/drb/invokemethod.rb b/lib/drb/invokemethod.rb index d11feabcb8..71ebec11f6 100644 --- a/lib/drb/invokemethod.rb +++ b/lib/drb/invokemethod.rb @@ -1,8 +1,8 @@ # for ruby-1.8.0 -module DRb +module DRb # :nodoc: all class DRbServer - module InvokeMethod18Mixin # :nodoc: all + module InvokeMethod18Mixin def block_yield(x) if x.size == 1 && x[0].class == Array x[0] = DRbArray.new(x[0]) |