|
Revision 1824, 0.5 kB
(checked in by nahi, 2 years ago)
|
- Copyright notice updated. add '2000-2007' uniformly.
|
- Property svn:eol-style set to
native
- Property svn:keywords set to
author date id revision
|
| Line | |
|---|
| 1 |
# SOAP4R - RPC utility. |
|---|
| 2 |
# Copyright (C) 2000-2007 NAKAMURA, Hiroshi <nahi@ruby-lang.org>. |
|---|
| 3 |
|
|---|
| 4 |
# This program is copyrighted free software by NAKAMURA, Hiroshi. You can |
|---|
| 5 |
# redistribute it and/or modify it under the same terms of Ruby's license; |
|---|
| 6 |
# either the dual license version in 2003, or any later version. |
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
module SOAP |
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
module RPC |
|---|
| 13 |
ServerException = Mapping::MappedException |
|---|
| 14 |
|
|---|
| 15 |
def self.defined_methods(obj) |
|---|
| 16 |
if obj.is_a?(Module) |
|---|
| 17 |
obj.methods - Module.methods |
|---|
| 18 |
else |
|---|
| 19 |
obj.methods - Object.instance_methods(true) |
|---|
| 20 |
end |
|---|
| 21 |
end |
|---|
| 22 |
end |
|---|
| 23 |
|
|---|
| 24 |
|
|---|
| 25 |
end |
|---|