dwolla_v2 2.1.0 → 2.2.0

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: 151c3ed290fb74e0052a41bb7381d721b01ef9bb
4
- data.tar.gz: 1c15b5a0d32c87368ad1913cf66f133ae34899d4
3
+ metadata.gz: 39bf667ecf4bf2f299a94476716f1261b092b60b
4
+ data.tar.gz: 3ab3c531466c89a286b1ddf66185b2b1681b6330
5
5
  SHA512:
6
- metadata.gz: 0095a3e82e01d869dce226a42540ae61e40136e5adbab721c71ae34d9b22672e26f67a07702d13a0a9a7a9425d590597a7b660c7cd5d16e3c686d699835a299d
7
- data.tar.gz: 34f29f4d5804189b2f64541ae63f5dfe168634c6a719b5cc5faea14374e855c4070fa3eba2829f28f8d7d09ca21066e914d702ff97a491b5e42757a9e740e146
6
+ metadata.gz: d774e87d98bd99dbc7cc85d24557aec64c90afd92fb26f593c0c096a699e3d2359eb8d6256555fdb2b312f190e1f8701cea7b0a36d002e50b22730b5e2fff173
7
+ data.tar.gz: d9f9058100884c97e1be778689af8b7b4f1a39a49abe9567c36e1ce311a0f7526054bd9832874c9b76ee84a818883e0ba0ee68d94290f1bbf3a24c4b3292f55e
data/README.md CHANGED
@@ -266,6 +266,7 @@ The gem is available as open source under the terms of the [MIT License](https:/
266
266
 
267
267
  ## Changelog
268
268
 
269
+ * **2.2.0** - Change token url from `www.dwolla.com/oauth/v2/token` to `accounts.dwolla.com/token`
269
270
  * **2.1.0** - Ensure `Time.iso8601` is defined so timestamps get parsed. [#38](https://github.com/Dwolla/dwolla-v2-ruby/pull/38) (Thanks @javierjulio!)
270
271
  * **2.0.3** - Add `DuplicateResourceError` [#34](https://github.com/Dwolla/dwolla-v2-ruby/pull/34) (Thanks @javierjulio!)
271
272
  * **2.0.2** - Fix bug in [#30](https://github.com/Dwolla/dwolla-v2-ruby/pull/30) (Thanks again @sobrinho!)
@@ -3,12 +3,12 @@ module DwollaV2
3
3
  ENVIRONMENTS = {
4
4
  :production => {
5
5
  :auth_url => "https://www.dwolla.com/oauth/v2/authenticate",
6
- :token_url => "https://www.dwolla.com/oauth/v2/token",
6
+ :token_url => "https://accounts.dwolla.com/token",
7
7
  :api_url => "https://api.dwolla.com"
8
8
  },
9
9
  :sandbox => {
10
10
  :auth_url => "https://sandbox.dwolla.com/oauth/v2/authenticate",
11
- :token_url => "https://sandbox.dwolla.com/oauth/v2/token",
11
+ :token_url => "https://accounts-sandbox.dwolla.com/token",
12
12
  :api_url => "https://api-sandbox.dwolla.com"
13
13
  }
14
14
  }
@@ -1,3 +1,3 @@
1
1
  module DwollaV2
2
- VERSION = "2.1.0"
2
+ VERSION = "2.2.0"
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.1.0
4
+ version: 2.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stephen Ausman
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-02-08 00:00:00.000000000 Z
11
+ date: 2018-08-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler