remove ActiveRecordSoapMarshallable, can't reproduce the problem it was intended to fix.

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1043 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Leon Breedt 2005-03-31 09:12:10 +00:00
parent cfef86c645
commit 0f198eb58e
2 changed files with 2 additions and 14 deletions

View File

@ -1,5 +1,7 @@
*0.7.0* (Unreleased)
* Remove ActiveRecordSoapMarshallable workaround, see #912 for details
* Add scaffolding via ActionController::Base.web_service_scaffold for quick testing using a web browser
* Generalize casting code to be used by both SOAP and XML-RPC (previously, it was only XML-RPC)

View File

@ -279,19 +279,5 @@ module WS
return false
end
end
module ActiveRecordSoapMarshallable
def allocate
obj = super
attrs = {}
self.columns.each{|c| attrs[c.name.to_s] = c.default}
obj.instance_variable_set('@attributes', attrs)
obj
end
end
if Object.const_defined?('ActiveRecord')
ActiveRecord::Base.extend(ActiveRecordSoapMarshallable)
end
end
end