summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-lang/ruby/files/ruby-1.8.2-xmlrpc-ipimethods-fix.diff')
-rw-r--r--dev-lang/ruby/files/ruby-1.8.2-xmlrpc-ipimethods-fix.diff11
1 files changed, 11 insertions, 0 deletions
diff --git a/dev-lang/ruby/files/ruby-1.8.2-xmlrpc-ipimethods-fix.diff b/dev-lang/ruby/files/ruby-1.8.2-xmlrpc-ipimethods-fix.diff
new file mode 100644
index 000000000000..c2cb0f639d84
--- /dev/null
+++ b/dev-lang/ruby/files/ruby-1.8.2-xmlrpc-ipimethods-fix.diff
@@ -0,0 +1,11 @@
+--- ruby-1.8.2/lib/xmlrpc/utils.rb.orig 2003-08-15 02:20:14.000000000 +0900
++++ ruby-1.8.2/lib/xmlrpc/utils.rb 2005-07-01 16:33:19.243521736 +0900
+@@ -138,7 +138,7 @@
+
+ def get_methods(obj, delim=".")
+ prefix = @prefix + delim
+- obj.class.public_instance_methods.collect { |name|
++ obj.class.public_instance_methods(false).collect { |name|
+ [prefix + name, obj.method(name).to_proc, nil, nil]
+ }
+ end