dwolla_v2 2.0.0 → 2.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e574c96fed50363e9fcdec5288f31df261b25a1b
4
- data.tar.gz: 2080ba7cda54511bfd2c692db0795acdb99f0348
3
+ metadata.gz: '089251ba645b3bcdcd6124ecbd51ded6f6450f17'
4
+ data.tar.gz: 0bdc325ba71ce26637b950a745dd7f7d73984ce8
5
5
  SHA512:
6
- metadata.gz: 810a4d8b011ce4bb027c79be84601c88e7934ea4a8e6180f7c6390c94d3831a3982ab92dd4b5ac0b9a8dd08fb65774182d8088d5459e0093b34e098168258a28
7
- data.tar.gz: 9d152fde10b2c8b990b518ac7179d6d00bdeb646e41c781ba4f615e27c3d016c1696c62d2404721e1cfa054fc70b067907737796ab53a07bd8086f50ddb3ca8e
6
+ metadata.gz: c2a6e1b39e2bb70a7694bf8bb666600678c00642f7ab89aa301be86971371bf8b585fe3eca3658879d3c0c7a122eb27d62dc18fca1213330e0c77b59f34d49c6
7
+ data.tar.gz: 7c798f991980e38887aea44c6eef584e8834461437bdcca87c008cbcce0a942e5e375fac99c40d3bdc08abd6c9bec4a7e24293f1ba77fc451c79870419d927e4
data/README.md CHANGED
@@ -334,6 +334,7 @@ The gem is available as open source under the terms of the [MIT License](https:/
334
334
 
335
335
  ## Changelog
336
336
 
337
+ - **2.0.1** - Fix bugs in [#27](https://github.com/Dwolla/dwolla-v2-ruby/pull/27) + [#28](https://github.com/Dwolla/dwolla-v2-ruby/pull/28) (Thanks @sobrinho!)
337
338
  - **2.0.0**
338
339
  - Rename `DwollaV2::Response` `#status` => `#response_status`, `#headers` => `#response_headers` to prevent
339
340
  [conflicts with response body properties][response-conflicts].
@@ -47,7 +47,7 @@ module DwollaV2
47
47
  def inspect
48
48
  Util.pretty_inspect(
49
49
  self.class.name,
50
- { response_status: status, response_headers: headers },
50
+ { response_status: response_status, response_headers: response_headers },
51
51
  response_body
52
52
  )
53
53
  end
@@ -77,7 +77,7 @@ module DwollaV2
77
77
 
78
78
  def self.full_url client, path
79
79
  path = path[:_links][:self][:href] if path.is_a? Hash
80
- path.sub! /^https?:\/\/[^\/]*/, ""
80
+ path = path.sub /^https?:\/\/[^\/]*/, ""
81
81
  if path.start_with? client.api_url
82
82
  path
83
83
  elsif path.start_with? "/"
@@ -1,3 +1,3 @@
1
1
  module DwollaV2
2
- VERSION = "2.0.0"
2
+ VERSION = "2.0.1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dwolla_v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 2.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stephen Ausman
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-08-16 00:00:00.000000000 Z
11
+ date: 2017-08-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler