aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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: