Tuned documentation for release (AWS)

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1727 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
David Heinemeier Hansson
2005-07-06 08:25:04 +00:00
parent 2789b5d2ce
commit 72104faa58
3 changed files with 6 additions and 4 deletions

View File

@@ -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

View File

@@ -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

View File

@@ -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: