aboutsummaryrefslogtreecommitdiffstats
path: root/activeresource/lib
diff options
context:
space:
mode:
Diffstat (limited to 'activeresource/lib')
-rw-r--r--activeresource/lib/active_resource/base.rb11
1 files changed, 7 insertions, 4 deletions
diff --git a/activeresource/lib/active_resource/base.rb b/activeresource/lib/active_resource/base.rb
index be0560879d..4635a5009e 100644
--- a/activeresource/lib/active_resource/base.rb
+++ b/activeresource/lib/active_resource/base.rb
@@ -297,12 +297,15 @@ module ActiveResource
def create
returning connection.post(collection_path, to_xml) do |response|
self.id = id_from_response(response)
-
- if response['Content-size'] != "0" && response.body.strip.size > 0
- load(connection.xml_from_response(response))
- end
+ load_attributes_from_response(response)
end
end
+
+ def load_attributes_from_response(response)
+ if response['Content-size'] != "0" && response.body.strip.size > 0
+ load(connection.xml_from_response(response))
+ end
+ end
# Takes a response from a typical create post and pulls the ID out
def id_from_response(response)