aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-07-06 08:25:04 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-07-06 08:25:04 +0000
commit72104faa5891a7d2a6b598c5a5db036a2b06b74a (patch)
tree7465d8c91966dd39dea24ab4bbca9fd5cecc3fa5
parent2789b5d2cefb4765e5bd2d14b10109cfe2d7f96b (diff)
downloadrails-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
-rw-r--r--actionwebservice/CHANGELOG2
-rw-r--r--actionwebservice/lib/action_web_service/casting.rb2
-rw-r--r--actionwebservice/lib/action_web_service/protocol/xmlrpc_protocol.rb6
3 files changed, 6 insertions, 4 deletions
diff --git a/actionwebservice/CHANGELOG b/actionwebservice/CHANGELOG
index fc7243bf77..a7404078c4 100644
--- a/actionwebservice/CHANGELOG
+++ b/actionwebservice/CHANGELOG
@@ -1,4 +1,4 @@
-*SVN*
+*0.8.0* (6 July, 2005)
* Fix WSDL generation by aliasing #inherited instead of trying to overwrite it, or the WSDL action may end up not being defined in the controller
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: