dwolla_v2 2.1.0 → 2.2.0
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.
- checksums.yaml +4 -4
- data/README.md +1 -0
- data/lib/dwolla_v2/client.rb +2 -2
- data/lib/dwolla_v2/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 39bf667ecf4bf2f299a94476716f1261b092b60b
|
|
4
|
+
data.tar.gz: 3ab3c531466c89a286b1ddf66185b2b1681b6330
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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!)
|
data/lib/dwolla_v2/client.rb
CHANGED
|
@@ -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://
|
|
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/
|
|
11
|
+
:token_url => "https://accounts-sandbox.dwolla.com/token",
|
|
12
12
|
:api_url => "https://api-sandbox.dwolla.com"
|
|
13
13
|
}
|
|
14
14
|
}
|
data/lib/dwolla_v2/version.rb
CHANGED
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.
|
|
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-
|
|
11
|
+
date: 2018-08-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|