dwolla_v2 3.1.1 → 4.0.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
  SHA256:
3
- metadata.gz: 4be9f7bea7e810a03f2ab1696a4f58fab0a6a98ea1d58175a439821dda1f22fc
4
- data.tar.gz: 4298b78df775708117f2b2da8c34324fd473541b6c373fad528bdc056fd00bfd
3
+ metadata.gz: 88344d27831145faf1977637ec194dc1311b9c6e4aa3c2c20489af89804b1536
4
+ data.tar.gz: 6acff34ef57f47aa6e4418b8f8f649f3cf49915696b0952da716f0bf572a2d08
5
5
  SHA512:
6
- metadata.gz: db8f28c736e95cca9712bd393576e1e407f311fc77ce6a368f819980238276a8d48e0563c84665d3cbba112af10c048d81dd1114d5305dcc4737c4a90fb8e41d
7
- data.tar.gz: 6f4b3852412029a7c9eeb2de586aea3f88d5102b53eac27d624f01f2789553797bb5abb06b22a32593297c5a2e7213ca3b67bd95c8d808fe8fd5b790f61b1c01
6
+ metadata.gz: 64772c46ee9044665005e1b598182ebba3cea236cc7eab8b77df2fd1b016e3c1819de4189d125f6e3591491fbf169aba3462583bdeab0e1deece7e3bb5ab2dc7
7
+ data.tar.gz: c61820a0d28c698990acad6f5a31e619073b066af4ce5276632b41e88c75f3298392a8dd1e6a7ed33afab627ab171bd8fd7b6a397fc00adb9e37cbf975927629
@@ -18,18 +18,17 @@ jobs:
18
18
  strategy:
19
19
  matrix:
20
20
  os: ["ubuntu-latest"]
21
- ruby: ["2.4", "2.5", "2.6", "2.7"]
21
+ ruby: ["2.6", "2.7", "3.0", "3.1", "3.2"]
22
22
 
23
23
  runs-on: ${{ matrix.os }}
24
24
 
25
25
  steps:
26
- - uses: actions/checkout@v2
26
+ - uses: actions/checkout@v4
27
27
  - name: Set up Ruby
28
28
  # https://github.com/ruby/setup-ruby
29
29
  uses: ruby/setup-ruby@v1
30
30
  with:
31
31
  ruby-version: ${{ matrix.ruby }}
32
- - name: Install dependencies
33
- run: bundle install
32
+ bundler-cache: true
34
33
  - name: Run tests
35
34
  run: bundle exec rspec
data/.gitignore CHANGED
@@ -8,3 +8,9 @@
8
8
  /spec/reports/
9
9
  /tmp/
10
10
  /vendor/
11
+
12
+ # Visual Studio Code
13
+ .vscode/
14
+
15
+ # IntelliJ Idea
16
+ .idea/
data/Dockerfile ADDED
@@ -0,0 +1,10 @@
1
+ FROM ruby:3.1.2
2
+ RUN mkdir app && mkdir app/lib && mkdir app/spec
3
+ ADD lib /app/lib
4
+ ADD Gemfile /app
5
+ ADD dwolla_v2.gemspec /app
6
+ ADD Rakefile /app
7
+ ADD spec /app/spec
8
+ WORKDIR /app
9
+ RUN bundle install
10
+ CMD ["rake", "spec"]
data/README.md CHANGED
@@ -1,12 +1,28 @@
1
- # DwollaV2
1
+ # Dwolla SDK for Ruby
2
2
 
3
- ![Build Status](https://travis-ci.org/Dwolla/dwolla-v2-ruby.svg)
3
+ This repository contains the source code for Dwolla's Ruby-based SDK, which allows developers to interact with Dwolla's server-side API via a Ruby API, with automatic OAuth token management included. Any action that can be performed via an HTTP request can be made using this SDK when executed within a server-side environment.
4
4
 
5
- Dwolla V2 Ruby client.
5
+ ## Table of Contents
6
6
 
7
- [API Documentation](https://docsv2.dwolla.com)
7
+ - [Getting Started](#getting-started)
8
+ - [Installation](#installation)
9
+ - [Initialization](#initialization)
10
+ - [Making Requests](#making-requests)
11
+ - [Low-level Requests](#low-level-requests)
12
+ - [Setting Headers](#setting-headers)
13
+ - [Responses](#responses)
14
+ - [Success](#success)
15
+ - [Error](#error)
16
+ - [Changelog](#changelog)
17
+ - [Community](#community)
18
+ - [Additional Resources](#additional-resources)
8
19
 
9
- ## Installation
20
+
21
+ ## Getting Started
22
+
23
+ ### Installation
24
+
25
+ To begin using this SDK, you will first need to download it to your machine. We use [RubyGems](https://rubygems.org/gems/dwolla_v2) to distribute this package.
10
26
 
11
27
  Add this line to your application's Gemfile:
12
28
 
@@ -22,15 +38,14 @@ Or install it yourself as:
22
38
 
23
39
  $ gem install dwolla_v2
24
40
 
25
- ## `DwollaV2::Client`
41
+ ### Initialization
26
42
 
27
- ### Basic usage
43
+ Before any API requests can be made, you must first determine which environment you will be using, as well as fetch the application key and secret. To fetch your application key and secret, please visit one of the following links:
28
44
 
29
- Create a client using your application's consumer key and secret found on the applications page
30
- ([Sandbox][apsandbox], [Production][approd]).
45
+ * Production: https://dashboard.dwolla.com/applications
46
+ * Sandbox: https://dashboard-sandbox.dwolla.com/applications
31
47
 
32
- [apsandbox]: https://dashboard-sandbox.dwolla.com/applications
33
- [approd]: https://dashboard.dwolla.com/applications
48
+ Finally, you can create an instance of `Client` with `key` and `secret` replaced with the application key and secret that you fetched from one of the aforementioned links, respectively.
34
49
 
35
50
  ```ruby
36
51
  # config/initializers/dwolla.rb
@@ -41,13 +56,9 @@ $dwolla = DwollaV2::Client.new(
41
56
  )
42
57
  ```
43
58
 
44
- ### Integrations Authorization
45
-
46
- Check out our [Integrations Authorization Guide](https://developers.dwolla.com/integrations/authorization).
59
+ #### Configure Faraday (Optional)
47
60
 
48
- ### Configure Faraday (optional)
49
-
50
- DwollaV2 uses [Faraday][faraday] to make HTTP requests. You can configure your own
61
+ Dwolla for Ruby uses [Faraday][faraday] to make HTTP requests. You can configure your own
51
62
  [Faraday middleware][faraday-middleware] and adapter when configuring your client. Remember to
52
63
  always include an adapter last, even if you want to use the default adapter.
53
64
 
@@ -68,27 +79,38 @@ $dwolla = DwollaV2::Client.new(
68
79
  end
69
80
  ```
70
81
 
71
- ## Requests
82
+ ## Making Requests
83
+
84
+ Once you've created a `Client`, currently, you can make low-level HTTP requests.
85
+
86
+ ### Low-level Requests
72
87
 
73
- `DwollaV2::Client`s can make requests using the `#get`, `#post`, and `#delete` methods.
88
+ To make low-level HTTP requests, you can use the [`get()`](#get), [`post()`](#post), and [`delete()`](#delete) methods.
74
89
 
90
+ #### `GET`
75
91
  ```ruby
76
92
  # GET api.dwolla.com/resource?foo=bar
77
93
  $dwolla.get "resource", foo: "bar"
94
+ ```
78
95
 
96
+ #### `POST`
97
+ ```ruby
79
98
  # POST api.dwolla.com/resource {"foo":"bar"}
80
99
  $dwolla.post "resource", foo: "bar"
81
100
 
82
101
  # POST api.dwolla.com/resource multipart/form-data foo=...
83
102
  $dwolla.post "resource", foo: Faraday::UploadIO.new("/path/to/bar.png", "image/png")
103
+ ```
84
104
 
105
+ #### `DELETE`
106
+ ```ruby
85
107
  # DELETE api.dwolla.com/resource
86
108
  $dwolla.delete "resource"
87
109
  ```
88
110
 
89
- #### Setting headers
111
+ ##### Setting Headers
90
112
 
91
- To set additional headers on a request you can pass a `Hash` of headers as the 3rd argument.
113
+ To set additional headers on a request, you can pass a `Hash` of headers as the 3rd argument.
92
114
 
93
115
  For example:
94
116
 
@@ -97,9 +119,15 @@ $dwolla.post "customers", { firstName: "John", lastName: "Doe", email: "jd@doe.c
97
119
  { 'Idempotency-Key': 'a52fcf63-0730-41c3-96e8-7147b5d1fb01' }
98
120
  ```
99
121
 
100
- ## Responses
122
+ #### Responses
123
+
124
+ The following snippets demonstrate successful and errored responses from the Dwolla API.
125
+
126
+ An errored response is returned when Dwolla's servers respond with a status code that is greater than or equal to 400, whereas a successful response is when Dwolla's servers respond with a 200-level status code.
127
+
128
+ ##### Success
101
129
 
102
- Requests return a `DwollaV2::Response`.
130
+ Successful requests return a `DwollaV2::Response`.
103
131
 
104
132
  ```ruby
105
133
  res = $dwolla.get "/"
@@ -115,7 +143,7 @@ res._links.events.href
115
143
  # => "https://api-sandbox.dwolla.com/events"
116
144
  ```
117
145
 
118
- ## Errors
146
+ ##### Error
119
147
 
120
148
  If the server returns an error, a `DwollaV2::Error` (or one of its subclasses) will be raised.
121
149
  `DwollaV2::Error`s are similar to `DwollaV2::Response`s.
@@ -140,9 +168,10 @@ rescue DwollaV2::Error => e
140
168
  end
141
169
  ```
142
170
 
143
- ### `DwollaV2::Error` subclasses:
144
171
 
145
- _See https://docsv2.dwolla.com/#errors for more info._
172
+ ###### `DwollaV2::Error` subclasses:
173
+
174
+ _See https://developers.dwolla.com/api-reference#errors for more info._
146
175
 
147
176
  - `DwollaV2::AccessDeniedError`
148
177
  - `DwollaV2::InvalidCredentialsError`
@@ -171,37 +200,25 @@ _See https://docsv2.dwolla.com/#errors for more info._
171
200
  - `DwollaV2::TooManyRequestsError`
172
201
  - `DwollaV2::ConflictError`
173
202
 
174
- ## Development
175
-
176
- After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
177
-
178
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
179
-
180
- ## Contributing
181
-
182
- Bug reports and pull requests are welcome on GitHub at https://github.com/Dwolla/dwolla-v2-ruby.
183
-
184
- ## License
185
-
186
- The gem is available as open source under the terms of the [MIT License](https://github.com/Dwolla/dwolla-v2-ruby).
187
-
188
203
  ## Changelog
189
204
 
190
- - **3.1.1** - Fix deprecation warning on Faraday::Connection#authorization (Thanks @javierjulio!). [#60](https://github.com/Dwolla/dwolla-v2-ruby/pull/60)
191
- - **3.1.0** - Added `DwollaV2::MaxNumberOfResourcesError` (Thanks @paulyeo21!). [#54](https://github.com/Dwolla/dwolla-v2-ruby/pull/54)
192
- - **3.0.1** - Update dependencies (Thanks @sealabcore!). [#48](https://github.com/Dwolla/dwolla-v2-ruby/pull/48)
205
+ - [**4.0.0**](https://github.com/Dwolla/dwolla-v2-ruby/releases/tag/v4.0.0) - Major version update to include support for Faraday 2.0, discontinue support for Ruby versions prior to v2.6, and adopt faraday-multipart in place of Faraday middleware.
206
+ - [**3.2.0**](https://github.com/Dwolla/dwolla-v2-ruby/releases/tag/3.2.0) - Minor version update to support Ruby 3.2+. The change involves adding '**' to the codebase to make `opts` in `./lib/dwollav2/client.rb` compliant with Ruby 3.2+. (Thanks [@peterb-onramp](https://github.com/peterb-onramp)!). [#68](https://github.com/Dwolla/dwolla-v2-ruby/pull/68)
207
+ - **3.1.1** - Fix deprecation warning on Faraday::Connection#authorization (Thanks [@javierjulio](https://github.com/javierjulio)!). [#60](https://github.com/Dwolla/dwolla-v2-ruby/pull/60)
208
+ - **3.1.0** - Added `DwollaV2::MaxNumberOfResourcesError` (Thanks [@paulyeo21](https://github.com/paulyeo21)!). [#54](https://github.com/Dwolla/dwolla-v2-ruby/pull/54)
209
+ - **3.0.1** - Update dependencies (Thanks [@sealabcore](https://github.com/sealabcore)!). [#48](https://github.com/Dwolla/dwolla-v2-ruby/pull/48)
193
210
  - **3.0.0** - Add integrations auth functions
194
211
  - **3.0.0.beta1** - Add token management functionality to `DwollaV2::Client`
195
212
  - **2.2.1** - Update dependencies
196
213
  - **2.2.0** - Change token url from `www.dwolla.com/oauth/v2/token` to `accounts.dwolla.com/token`
197
- - **2.1.0** - Ensure `Time.iso8601` is defined so timestamps get parsed. [#38](https://github.com/Dwolla/dwolla-v2-ruby/pull/38) (Thanks @javierjulio!)
198
- - **2.0.3** - Add `DuplicateResourceError` [#34](https://github.com/Dwolla/dwolla-v2-ruby/pull/34) (Thanks @javierjulio!)
199
- - **2.0.2** - Fix bug in [#30](https://github.com/Dwolla/dwolla-v2-ruby/pull/30) (Thanks again @sobrinho!)
200
- - **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!)
214
+ - **2.1.0** - Ensure `Time.iso8601` is defined so timestamps get parsed. [#38](https://github.com/Dwolla/dwolla-v2-ruby/pull/38) (Thanks [@javierjulio](https://github.com/javierjulio)!)
215
+ - **2.0.3** - Add `DuplicateResourceError` [#34](https://github.com/Dwolla/dwolla-v2-ruby/pull/34) (Thanks [@javierjulio](https://github.com/javierjulio)!)
216
+ - **2.0.2** - Fix bug in [#30](https://github.com/Dwolla/dwolla-v2-ruby/pull/30) (Thanks again [@sobrinho](https://github.com/sobrinho)!
217
+ - **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](https://github.com/sobrinho)!)
201
218
  - **2.0.0**
202
219
  - Rename `DwollaV2::Response` `#status` => `#response_status`, `#headers` => `#response_headers` to prevent
203
- [conflicts with response body properties][response-conflicts].
204
- - Remove support for Ruby versions < 2 ([Bump public_suffix dependency version][public-suffix]).
220
+ [conflicts with response body properties](https://discuss.dwolla.com/t/document-change-or-more-clarifiation/3964).
221
+ - Remove support for Ruby versions < 2 ([Bump public_suffix dependency version](https://github.com/Dwolla/dwolla-v2-ruby/pull/18#discussion_r108028135)).
205
222
  - **1.2.3** - Implement `#empty?` on `DwollaV2::Token` to allow it to be passed to ActiveRecord constructor.
206
223
  - **1.2.2** - Strip domain from URLs provided to `token.*` methods.
207
224
  - **1.2.1** - Update sandbox URLs from uat => sandbox.
@@ -217,5 +234,29 @@ The gem is available as open source under the terms of the [MIT License](https:/
217
234
  - **0.2.0** - Works with `attr_encrypted`
218
235
  - **0.1.1** - Handle 500 error with HTML response body when requesting a token
219
236
 
220
- [response-conflicts]: https://discuss.dwolla.com/t/document-change-or-more-clarifiation/3964
221
- [public-suffix]: https://github.com/Dwolla/dwolla-v2-ruby/pull/18#discussion_r108028135
237
+ ## Community
238
+ * If you have any feedback, please reach out to us on [our forums](https://discuss.dwolla.com/) or by [creating a GitHub issue](https://github.com/Dwolla/dwolla-v2-ruby/issues/new).
239
+ * If you would like to contribute to this library, [bug reports](https://github.com/Dwolla/dwolla-v2-ruby/issues) and [pull requests](https://github.com/Dwolla/dwolla-v2-ruby/pulls) are always appreciated!
240
+ * After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
241
+ * To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
242
+
243
+ ## Docker
244
+
245
+ If you prefer to use Docker to run dwolla-v2-python locally, a Dockerfile is included at the root directory.
246
+ Follow these instructions from [Docker's website](https://docs.docker.com/build/hellobuild/) to create a Docker image from the Dockerfile, and run it.
247
+
248
+ ## Additional Resources
249
+
250
+ To learn more about Dwolla and how to integrate our product with your application, please consider visiting the following resources and becoming a member of our community!
251
+
252
+ * [Dwolla](https://www.dwolla.com/)
253
+ * [Dwolla Developers](https://developers.dwolla.com/)
254
+ * [SDKs and Tools](https://developers.dwolla.com/sdks-tools)
255
+ * [Dwolla SDK for C#](https://github.com/Dwolla/dwolla-v2-csharp)
256
+ * [Dwolla SDK for Kotlin](https://github.com/Dwolla/dwolla-v2-kotlin)
257
+ * [Dwolla SDK for Node](https://github.com/Dwolla/dwolla-v2-node)
258
+ * [Dwolla SDK for PHP](https://github.com/Dwolla/dwolla-v2-php)
259
+ * [Dwolla SDK for Python](https://github.com/Dwolla/dwolla-v2-python)
260
+ * [Developer Support Forum](https://discuss.dwolla.com/)
261
+
262
+
data/dwolla_v2.gemspec CHANGED
@@ -15,16 +15,17 @@ Gem::Specification.new do |spec|
15
15
  spec.license = "MIT"
16
16
 
17
17
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
18
+ spec.files << "README.md"
18
19
  spec.bindir = "exe"
19
20
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
21
  spec.require_paths = ["lib"]
21
22
 
22
23
  spec.add_development_dependency "bundler", "~> 2.0"
23
- spec.add_development_dependency "rake", "~> 12.3"
24
+ spec.add_development_dependency "rake", "~> 13.0"
24
25
  spec.add_development_dependency "rspec", "~> 3.8"
25
26
  spec.add_development_dependency "webmock", "~> 3.6"
26
27
 
27
28
  spec.add_dependency "hashie", ">= 3.6"
28
- spec.add_dependency "faraday", ">= 0.15"
29
- spec.add_dependency "faraday_middleware", ">= 0.13"
29
+ spec.add_dependency "faraday", "~> 2.0"
30
+ spec.add_dependency "faraday-multipart"
30
31
  end
@@ -20,7 +20,7 @@ module DwollaV2
20
20
 
21
21
  def_delegators :current_token, :get, :post, :delete
22
22
 
23
- def initialize opts
23
+ def initialize **opts
24
24
  opts[:id] ||= opts[:key]
25
25
  raise ArgumentError.new ":key is required" unless opts[:id].is_a? String
26
26
  raise ArgumentError.new ":secret is required" unless opts[:secret].is_a? String
@@ -58,7 +58,7 @@ module DwollaV2
58
58
 
59
59
  def conn
60
60
  @conn ||= Faraday.new do |f|
61
- f.request :basic_auth, id, secret
61
+ f.request :authorization, :basic, id, secret
62
62
  f.request :url_encoded
63
63
  f.use SetUserAgent
64
64
  f.use HandleErrors
@@ -1,3 +1,3 @@
1
1
  module DwollaV2
2
- VERSION = "3.1.1"
2
+ VERSION = "4.0.0"
3
3
  end
data/lib/dwolla_v2.rb CHANGED
@@ -8,7 +8,7 @@ require "time"
8
8
  require "hashie"
9
9
 
10
10
  require "faraday"
11
- require "faraday_middleware"
11
+ require "faraday/multipart"
12
12
 
13
13
  require "dwolla_v2/version"
14
14
  require "dwolla_v2/client"
@@ -38,7 +38,7 @@ require "dwolla_v2/errors/server_error"
38
38
  require "dwolla_v2/errors/temporarily_unavailable_error"
39
39
  require "dwolla_v2/errors/unsupported_grant_type_error"
40
40
 
41
- # Dwolla errors https://docsv2.dwolla.com/#errors
41
+ # Dwolla errors https://developers.dwolla.com/api-reference#errors
42
42
  require "dwolla_v2/errors/bad_request_error"
43
43
  require "dwolla_v2/errors/validation_error"
44
44
  require "dwolla_v2/errors/invalid_credentials_error"
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.1.1
4
+ version: 4.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stephen Ausman
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-12-22 00:00:00.000000000 Z
11
+ date: 2023-10-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -30,14 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '12.3'
33
+ version: '13.0'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: '12.3'
40
+ version: '13.0'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: rspec
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -84,30 +84,30 @@ dependencies:
84
84
  name: faraday
85
85
  requirement: !ruby/object:Gem::Requirement
86
86
  requirements:
87
- - - ">="
87
+ - - "~>"
88
88
  - !ruby/object:Gem::Version
89
- version: '0.15'
89
+ version: '2.0'
90
90
  type: :runtime
91
91
  prerelease: false
92
92
  version_requirements: !ruby/object:Gem::Requirement
93
93
  requirements:
94
- - - ">="
94
+ - - "~>"
95
95
  - !ruby/object:Gem::Version
96
- version: '0.15'
96
+ version: '2.0'
97
97
  - !ruby/object:Gem::Dependency
98
- name: faraday_middleware
98
+ name: faraday-multipart
99
99
  requirement: !ruby/object:Gem::Requirement
100
100
  requirements:
101
101
  - - ">="
102
102
  - !ruby/object:Gem::Version
103
- version: '0.13'
103
+ version: '0'
104
104
  type: :runtime
105
105
  prerelease: false
106
106
  version_requirements: !ruby/object:Gem::Requirement
107
107
  requirements:
108
108
  - - ">="
109
109
  - !ruby/object:Gem::Version
110
- version: '0.13'
110
+ version: '0'
111
111
  description: Dwolla V2 Ruby client
112
112
  email:
113
113
  - stephen@dwolla.com
@@ -118,6 +118,7 @@ files:
118
118
  - ".github/workflows/ruby.yml"
119
119
  - ".gitignore"
120
120
  - ".rspec"
121
+ - Dockerfile
121
122
  - Gemfile
122
123
  - LICENSE.txt
123
124
  - README.md
@@ -172,7 +173,7 @@ homepage: https://github.com/Dwolla/dwolla-v2-ruby
172
173
  licenses:
173
174
  - MIT
174
175
  metadata: {}
175
- post_install_message:
176
+ post_install_message:
176
177
  rdoc_options: []
177
178
  require_paths:
178
179
  - lib
@@ -187,8 +188,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
187
188
  - !ruby/object:Gem::Version
188
189
  version: '0'
189
190
  requirements: []
190
- rubygems_version: 3.0.3.1
191
- signing_key:
191
+ rubygems_version: 3.4.1
192
+ signing_key:
192
193
  specification_version: 4
193
194
  summary: Dwolla V2 Ruby client
194
195
  test_files: []