aboutsummaryrefslogtreecommitdiffstats
path: root/activeresource
diff options
context:
space:
mode:
authorRick Olson <technoweenie@gmail.com>2007-04-29 04:46:14 +0000
committerRick Olson <technoweenie@gmail.com>2007-04-29 04:46:14 +0000
commit8e8fd99d7f88f35f67d46d43eea693a67e61d7ec (patch)
tree69cb7bb59ad00546277ee1d3ef4e18c5459b7d11 /activeresource
parentbd50d82f701c55d89b891ebd216ec84008b486c1 (diff)
downloadrails-8e8fd99d7f88f35f67d46d43eea693a67e61d7ec.tar.gz
rails-8e8fd99d7f88f35f67d46d43eea693a67e61d7ec.tar.bz2
rails-8e8fd99d7f88f35f67d46d43eea693a67e61d7ec.zip
change #custom_headers to just #headers [Rick]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6625 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activeresource')
-rw-r--r--activeresource/CHANGELOG2
-rw-r--r--activeresource/lib/active_resource/base.rb14
-rw-r--r--activeresource/lib/active_resource/custom_methods.rb18
-rw-r--r--activeresource/test/base_test.rb4
4 files changed, 19 insertions, 19 deletions
diff --git a/activeresource/CHANGELOG b/activeresource/CHANGELOG
index edee343db0..3589b89994 100644
--- a/activeresource/CHANGELOG
+++ b/activeresource/CHANGELOG
@@ -3,7 +3,7 @@
* Add support for setting custom headers per ActiveResource model [Rick]
class Project
- custom_headers['X-Token'] = 'foo'
+ headers['X-Token'] = 'foo'
end
# makes the GET request with the custom X-Token header
diff --git a/activeresource/lib/active_resource/base.rb b/activeresource/lib/active_resource/base.rb
index 5a2c54c5ec..590993ff9d 100644
--- a/activeresource/lib/active_resource/base.rb
+++ b/activeresource/lib/active_resource/base.rb
@@ -29,8 +29,8 @@ module ActiveResource
@connection
end
- def custom_headers
- @custom_headers ||= {}
+ def headers
+ @headers ||= {}
end
# Do not include any modules in the default element name. This makes it easier to seclude ARes objects
@@ -154,7 +154,7 @@ module ActiveResource
prefix_options, query_options = split_options(options)
from ||= collection_path(prefix_options, query_options)
- instantiate_collection(connection.get(from, custom_headers) || [])
+ instantiate_collection(connection.get(from, headers) || [])
end
def instantiate_collection(collection, prefix_options = {})
@@ -171,7 +171,7 @@ module ActiveResource
prefix_options, query_options = split_options(options)
from = scope.to_s.include?("/") ? scope : element_path(scope, prefix_options, query_options)
- returning new(connection.get(from, custom_headers)) do |resource|
+ returning new(connection.get(from, headers)) do |resource|
resource.prefix_options = prefix_options
end
end
@@ -258,7 +258,7 @@ module ActiveResource
# Delete the resource.
def destroy
- connection.delete(element_path, self.class.custom_headers)
+ connection.delete(element_path, self.class.headers)
end
# Evaluates to <tt>true</tt> if this resource is found.
@@ -304,14 +304,14 @@ module ActiveResource
# Update the resource on the remote service.
def update
- returning connection.put(element_path(prefix_options), to_xml, self.class.custom_headers) do |response|
+ returning connection.put(element_path(prefix_options), to_xml, self.class.headers) do |response|
load_attributes_from_response(response)
end
end
# Create (i.e., save to the remote service) the new resource.
def create
- returning connection.post(collection_path, to_xml, self.class.custom_headers) do |response|
+ returning connection.post(collection_path, to_xml, self.class.headers) do |response|
self.id = id_from_response(response)
load_attributes_from_response(response)
end
diff --git a/activeresource/lib/active_resource/custom_methods.rb b/activeresource/lib/active_resource/custom_methods.rb
index f4e21714a3..ce32dc111d 100644
--- a/activeresource/lib/active_resource/custom_methods.rb
+++ b/activeresource/lib/active_resource/custom_methods.rb
@@ -36,21 +36,21 @@ module ActiveResource
alias :orig_delete :delete
def get(method_name, options = {})
- connection.get(custom_method_collection_url(method_name, options), custom_headers)
+ connection.get(custom_method_collection_url(method_name, options), headers)
end
def post(method_name, options = {}, body = nil)
- connection.post(custom_method_collection_url(method_name, options), body, custom_headers)
+ connection.post(custom_method_collection_url(method_name, options), body, headers)
end
def put(method_name, options = {}, body = nil)
- connection.put(custom_method_collection_url(method_name, options), body, custom_headers)
+ connection.put(custom_method_collection_url(method_name, options), body, headers)
end
# Need to jump through some hoops to retain the original class 'delete' method
def delete(custom_method_name, options = {})
if (custom_method_name.is_a?(Symbol))
- connection.delete(custom_method_collection_url(custom_method_name, options), custom_headers)
+ connection.delete(custom_method_collection_url(custom_method_name, options), headers)
else
orig_delete(custom_method_name, options)
end
@@ -71,23 +71,23 @@ module ActiveResource
module InstanceMethods
def get(method_name, options = {})
- connection.get(custom_method_element_url(method_name, options), self.class.custom_headers)
+ connection.get(custom_method_element_url(method_name, options), self.class.headers)
end
def post(method_name, options = {}, body = nil)
if new?
- connection.post(custom_method_new_element_url(method_name, options), (body.nil? ? to_xml : body), self.class.custom_headers)
+ connection.post(custom_method_new_element_url(method_name, options), (body.nil? ? to_xml : body), self.class.headers)
else
- connection.post(custom_method_element_url(method_name, options), body, self.class.custom_headers)
+ connection.post(custom_method_element_url(method_name, options), body, self.class.headers)
end
end
def put(method_name, options = {}, body = nil)
- connection.put(custom_method_element_url(method_name, options), body, self.class.custom_headers)
+ connection.put(custom_method_element_url(method_name, options), body, self.class.headers)
end
def delete(method_name, options = {})
- connection.delete(custom_method_element_url(method_name, options), self.class.custom_headers)
+ connection.delete(custom_method_element_url(method_name, options), self.class.headers)
end
diff --git a/activeresource/test/base_test.rb b/activeresource/test/base_test.rb
index 2c823e8e69..f8a9cd4f73 100644
--- a/activeresource/test/base_test.rb
+++ b/activeresource/test/base_test.rb
@@ -200,10 +200,10 @@ class BaseTest < Test::Unit::TestCase
end
def test_custom_header
- Person.custom_headers['key'] = 'value'
+ Person.headers['key'] = 'value'
assert_raises(ActiveResource::ResourceNotFound) { Person.find(3) }
ensure
- Person.custom_headers.delete('key')
+ Person.headers.delete('key')
end
def test_find_by_id_not_found