From d54c1b517d98e62c0beb14352f3d7c2e89df1ce6 Mon Sep 17 00:00:00 2001 From: Jamis Buck Date: Tue, 24 Oct 2006 19:05:43 +0000 Subject: to_xml needs to accept an options hash to conform with the expectations of Hash#to_xml git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5362 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- activeresource/lib/active_resource/base.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'activeresource/lib/active_resource') diff --git a/activeresource/lib/active_resource/base.rb b/activeresource/lib/active_resource/base.rb index 05013e8edd..9b5432ed37 100644 --- a/activeresource/lib/active_resource/base.rb +++ b/activeresource/lib/active_resource/base.rb @@ -130,8 +130,8 @@ module ActiveResource connection.delete(self.class.element_path(id, prefix_options)) end - def to_xml - attributes.to_xml(:root => self.class.element_name) + def to_xml(options={}) + attributes.to_xml({:root => self.class.element_name}.merge(options)) end # Reloads the attributes of this object from the remote web service. -- cgit v1.2.3