wrest 1.4.4 → 1.4.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/CHANGELOG CHANGED
@@ -2,6 +2,9 @@ Features under the section marked 'Current' are completed but pending release as
2
2
 
3
3
  Features under a numbered section are complete and available in the Wrest gem.
4
4
 
5
+ == 1.4.5
6
+ * GH#107 alias :deserialize :deserialise
7
+
5
8
  == 1.4.4
6
9
  * GH#105 Reduce Rubgems version requirements to 1.3.x or greater from > 1.5
7
10
 
data/README.rdoc CHANGED
@@ -1,4 +1,4 @@
1
- = Wrest 1.4.4
1
+ = Wrest 1.4.5
2
2
 
3
3
  (c) Copyright 2009-2011 {Sidu Ponnappa}[http://blog.sidu.in]. All Rights Reserved.
4
4
 
@@ -13,13 +13,21 @@ module Wrest
13
13
  module Translators::Json
14
14
  extend self
15
15
 
16
- def deserialise(response,options = {})
16
+ def deserialise(response, options = {})
17
17
  ActiveSupport::JSON.decode(response.body)
18
18
  end
19
19
 
20
+ def deserialize(response, options = {})
21
+ deserialise(response, options)
22
+ end
23
+
20
24
  def serialise(hash, options = {})
21
25
  hash.to_json(options)
22
26
  end
27
+
28
+ def serialize(hash, options = {})
29
+ serialise(hash, options)
30
+ end
23
31
  end
24
32
  end
25
33
  end
@@ -19,9 +19,17 @@ module Wrest
19
19
  end
20
20
  end
21
21
 
22
+ def deserialize(response, options = {})
23
+ deserialise(response, options)
24
+ end
25
+
22
26
  def serialise(hash, options = {})
23
27
  hash.to_xml(options)
24
28
  end
29
+
30
+ def serialize(hash, options = {})
31
+ serialise(hash, options)
32
+ end
25
33
  end
26
34
  end
27
35
  end
@@ -37,12 +37,20 @@ module Wrest #:nodoc:
37
37
  end
38
38
 
39
39
  def deserialise(options = {})
40
- @deserialised_body ||= deserialise_using(Wrest::Components::Translators.lookup(content_type),options)
40
+ @deserialised_body ||= deserialise_using(Wrest::Components::Translators.lookup(content_type),options)
41
41
  end
42
-
43
- def deserialise_using(translator,options={})
42
+
43
+ def deserialize(options = {})
44
+ deserialise(options)
45
+ end
46
+
47
+ def deserialise_using(translator, options={})
44
48
  translator.deserialise(@http_response,options)
45
49
  end
50
+
51
+ def deserialize_using(options = {})
52
+ deserialise_using(options)
53
+ end
46
54
 
47
55
  def code
48
56
  @http_response.status
@@ -13,6 +13,7 @@ module Wrest
13
13
  Close = 'close'
14
14
  KeepAlive = 'keep-alive'
15
15
  FormEncoded = 'application/x-www-form-urlencoded'
16
+ ApplicationXml = 'application/xml'
16
17
  end
17
18
  end
18
19
  end
@@ -74,13 +74,21 @@ module Wrest #:nodoc:
74
74
 
75
75
 
76
76
  def deserialise(options = {})
77
- @deserialised_body ||= deserialise_using(Wrest::Components::Translators.lookup(@http_response.content_type),options)
77
+ @deserialised_body ||= deserialise_using(Wrest::Components::Translators.lookup(@http_response.content_type),options)
78
+ end
79
+
80
+ def deserialize(options = {})
81
+ deserialise(options)
78
82
  end
79
83
 
80
84
  def deserialise_using(translator,options = {})
81
85
  translator.deserialise(@http_response,options)
82
86
  end
83
87
 
88
+ def deserialize_using(options = {})
89
+ deserialise_using(options)
90
+ end
91
+
84
92
  # Gives a hash of the response headers. The keys of the hash are case-insensitive.
85
93
  def headers
86
94
  return @headers if @headers
data/lib/wrest/uri.rb CHANGED
@@ -81,7 +81,9 @@ module Wrest #:nodoc:
81
81
  # Clones a Uri, building a new instance with exactly the same uri string.
82
82
  # You can however change the Uri options or add new ones.
83
83
  def clone(opts = {})
84
- Uri.new(@uri_string, @options.merge(opts))
84
+ merged_options = @options.merge(opts)
85
+ merged_options[:default_headers] = opts[:default_headers] ? @default_headers.merge(opts[:default_headers]) : {}
86
+ Uri.new(@uri_string, merged_options)
85
87
  end
86
88
 
87
89
  def eql?(other)
data/lib/wrest/version.rb CHANGED
@@ -8,5 +8,5 @@
8
8
  # See the License for the specific language governing permissions and limitations under the License.
9
9
 
10
10
  module Wrest
11
- VERSION = "1.4.4"
11
+ VERSION = "1.4.5"
12
12
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: wrest
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 1.4.4
5
+ version: 1.4.5
6
6
  platform: ruby
7
7
  authors:
8
8
  - Sidu Ponnappa
@@ -11,7 +11,7 @@ autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
13
 
14
- date: 2011-05-06 00:00:00 +05:30
14
+ date: 2011-05-26 00:00:00 +05:30
15
15
  default_executable:
16
16
  dependencies:
17
17
  - !ruby/object:Gem::Dependency