aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--activeresource/lib/active_resource/connection.rb4
-rw-r--r--activeresource/lib/active_resource/custom_methods.rb8
2 files changed, 6 insertions, 6 deletions
diff --git a/activeresource/lib/active_resource/connection.rb b/activeresource/lib/active_resource/connection.rb
index ef4d92451c..d41171270c 100644
--- a/activeresource/lib/active_resource/connection.rb
+++ b/activeresource/lib/active_resource/connection.rb
@@ -71,13 +71,13 @@ module ActiveResource
# Execute a PUT request (see HTTP protocol documentation if unfamiliar).
# Used to update resources.
def put(path, body = '', headers = {})
- request(:put, path, body, build_request_headers(headers))
+ request(:put, path, body.to_s, build_request_headers(headers))
end
# Execute a POST request.
# Used to create new resources.
def post(path, body = '', headers = {})
- request(:post, path, body, build_request_headers(headers))
+ request(:post, path, body.to_s, build_request_headers(headers))
end
def xml_from_response(response)
diff --git a/activeresource/lib/active_resource/custom_methods.rb b/activeresource/lib/active_resource/custom_methods.rb
index ce32dc111d..2e382cdd7e 100644
--- a/activeresource/lib/active_resource/custom_methods.rb
+++ b/activeresource/lib/active_resource/custom_methods.rb
@@ -39,11 +39,11 @@ module ActiveResource
connection.get(custom_method_collection_url(method_name, options), headers)
end
- def post(method_name, options = {}, body = nil)
+ def post(method_name, options = {}, body = '')
connection.post(custom_method_collection_url(method_name, options), body, headers)
end
- def put(method_name, options = {}, body = nil)
+ def put(method_name, options = {}, body = '')
connection.put(custom_method_collection_url(method_name, options), body, headers)
end
@@ -74,7 +74,7 @@ module ActiveResource
connection.get(custom_method_element_url(method_name, options), self.class.headers)
end
- def post(method_name, options = {}, body = nil)
+ def post(method_name, options = {}, body = '')
if new?
connection.post(custom_method_new_element_url(method_name, options), (body.nil? ? to_xml : body), self.class.headers)
else
@@ -82,7 +82,7 @@ module ActiveResource
end
end
- def put(method_name, options = {}, body = nil)
+ def put(method_name, options = {}, body = '')
connection.put(custom_method_element_url(method_name, options), body, self.class.headers)
end