dwolla_v2 3.0.1 → 3.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 324a9ef2bcc2447ff9d684620ad81541bde97018c385b71434cf9c60ea2be876
4
- data.tar.gz: dadf04c9535406e7c301bb525ce4bbb9a1b587b986ea5e5e47d42691142dda9d
3
+ metadata.gz: 3c41f5ce15e5ab3cf8cfdde49d2e72895ba0d00347e59b8ae7656c9653a03133
4
+ data.tar.gz: 9dd8a478e589e99716b00380ce4dbdb077ba1b4cd11def52f9766af54e0a3248
5
5
  SHA512:
6
- metadata.gz: bf6dd5cce98f0e4ceffca40d608f31a73ac3c20addded8b4ca66987f2871fb00a44f31b2441a717d9993542db8f74fdaaef360283be39c5a32d3b1ff6d5bd00a
7
- data.tar.gz: '09da34100a1614561ef17c037e4f5f5a8b9175dfc24b2d08f60fcb470ec34457a95f13292b3bd808b1f02d0231da56769c9674030ed3a90c7b7129063baec50a'
6
+ metadata.gz: fa42116bb5ac4a4405c66cb12dc48186db190e3c4d7aaebdf4074c46e1feea2689b9a0242fe4200097b77df7aa1928b9eb94315a2cc57f752ca9b5fc64d783e6
7
+ data.tar.gz: 93db64cb3b5b93894fb376b2e86f17016308d1c8def962049f0e77f8fd02d93abe22577b301fefcf06dc31a2e28ad6d97695a3337f2207e715d256bd798a3c40
@@ -18,17 +18,15 @@ jobs:
18
18
  strategy:
19
19
  matrix:
20
20
  os: ["ubuntu-latest"]
21
- ruby: ["2.3", "2.4", "2.5", "2.6"]
21
+ ruby: ["2.4", "2.5", "2.6", "2.7"]
22
22
 
23
23
  runs-on: ${{ matrix.os }}
24
24
 
25
25
  steps:
26
26
  - uses: actions/checkout@v2
27
27
  - name: Set up Ruby
28
- # To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
29
- # change this to (see https://github.com/ruby/setup-ruby#versioning):
30
- # uses: ruby/setup-ruby@v1
31
- uses: ruby/setup-ruby@ec106b438a1ff6ff109590de34ddc62c540232e0
28
+ # https://github.com/ruby/setup-ruby
29
+ uses: ruby/setup-ruby@v1
32
30
  with:
33
31
  ruby-version: ${{ matrix.ruby }}
34
32
  - name: Install dependencies
data/README.md CHANGED
@@ -11,7 +11,7 @@ Dwolla V2 Ruby client.
11
11
  Add this line to your application's Gemfile:
12
12
 
13
13
  ```ruby
14
- gem 'dwolla_v2', '~> 3.0'
14
+ gem 'dwolla_v2', '~> 3.1'
15
15
  ```
16
16
 
17
17
  And then execute:
@@ -187,6 +187,7 @@ The gem is available as open source under the terms of the [MIT License](https:/
187
187
 
188
188
  ## Changelog
189
189
 
190
+ - **3.1.0** - Added `DwollaV2::MaxNumberOfResourcesError` (Thanks @paulyeo21!). [#54](https://github.com/Dwolla/dwolla-v2-ruby/pull/54)
190
191
  - **3.0.1** - Update dependencies (Thanks @sealabcore!). [#48](https://github.com/Dwolla/dwolla-v2-ruby/pull/48)
191
192
  - **3.0.0** - Add integrations auth functions
192
193
  - **3.0.0.beta1** - Add token management functionality to `DwollaV2::Client`
@@ -56,6 +56,7 @@ require "dwolla_v2/errors/request_timeout_error"
56
56
  require "dwolla_v2/errors/too_many_requests_error"
57
57
  require "dwolla_v2/errors/conflict_error"
58
58
  require "dwolla_v2/errors/duplicate_resource_error"
59
+ require "dwolla_v2/errors/max_number_of_resources_error"
59
60
 
60
61
  module DwollaV2
61
62
  end
@@ -0,0 +1,4 @@
1
+ module DwollaV2
2
+ class MaxNumberOfResourcesError < Error
3
+ end
4
+ end
@@ -1,3 +1,3 @@
1
1
  module DwollaV2
2
- VERSION = "3.0.1"
2
+ VERSION = "3.1.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: 3.0.1
4
+ version: 3.1.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: 2020-10-27 00:00:00.000000000 Z
11
+ date: 2020-11-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -146,6 +146,7 @@ files:
146
146
  - lib/dwolla_v2/errors/invalid_scope_error.rb
147
147
  - lib/dwolla_v2/errors/invalid_scopes_error.rb
148
148
  - lib/dwolla_v2/errors/invalid_version_error.rb
149
+ - lib/dwolla_v2/errors/max_number_of_resources_error.rb
149
150
  - lib/dwolla_v2/errors/method_not_allowed_error.rb
150
151
  - lib/dwolla_v2/errors/not_found_error.rb
151
152
  - lib/dwolla_v2/errors/request_timeout_error.rb