diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2005-07-06 08:25:04 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2005-07-06 08:25:04 +0000 |
commit | 72104faa5891a7d2a6b598c5a5db036a2b06b74a (patch) | |
tree | 7465d8c91966dd39dea24ab4bbca9fd5cecc3fa5 /actionwebservice/lib | |
parent | 2789b5d2cefb4765e5bd2d14b10109cfe2d7f96b (diff) | |
download | rails-72104faa5891a7d2a6b598c5a5db036a2b06b74a.tar.gz rails-72104faa5891a7d2a6b598c5a5db036a2b06b74a.tar.bz2 rails-72104faa5891a7d2a6b598c5a5db036a2b06b74a.zip |
Tuned documentation for release (AWS)
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1727 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionwebservice/lib')
-rw-r--r-- | actionwebservice/lib/action_web_service/casting.rb | 2 | ||||
-rw-r--r-- | actionwebservice/lib/action_web_service/protocol/xmlrpc_protocol.rb | 6 |
2 files changed, 5 insertions, 3 deletions
diff --git a/actionwebservice/lib/action_web_service/casting.rb b/actionwebservice/lib/action_web_service/casting.rb index c76dd84581..9ce8192d49 100644 --- a/actionwebservice/lib/action_web_service/casting.rb +++ b/actionwebservice/lib/action_web_service/casting.rb @@ -7,7 +7,7 @@ module ActionWebService # :nodoc: end # Performs casting of arbitrary values into the correct types for the signature - class BaseCaster + class BaseCaster # :nodoc: def initialize(api_method) @api_method = api_method end diff --git a/actionwebservice/lib/action_web_service/protocol/xmlrpc_protocol.rb b/actionwebservice/lib/action_web_service/protocol/xmlrpc_protocol.rb index f09f89142a..2ee5af7c3f 100644 --- a/actionwebservice/lib/action_web_service/protocol/xmlrpc_protocol.rb +++ b/actionwebservice/lib/action_web_service/protocol/xmlrpc_protocol.rb @@ -1,7 +1,9 @@ require 'xmlrpc/marshal' -class XMLRPC::FaultException - alias :message :faultString +module XMLRPC # :nodoc: + class FaultException # :nodoc: + alias :message :faultString + end end module ActionWebService # :nodoc: |