lob 5.4.0 → 5.4.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/run_tests_job.yml +32 -0
- data/.github/workflows/update_gem.yml +27 -0
- data/.gitignore +1 -0
- data/CHANGELOG.md +10 -2
- data/README.md +1 -74
- data/examples/README.md +14 -14
- data/examples/csv_verify/verify.rb +1 -1
- data/lib/lob/resources/resource_base.rb +14 -9
- data/lib/lob/version.rb +1 -1
- data/lob.gemspec +3 -2
- data/spec/spec_helper.rb +6 -4
- metadata +24 -9
- data/.travis.yml +0 -12
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b0a60dcd0cd6c3caef1d72f172c78ac2d544532a006c00ede921f397de1c2897
|
4
|
+
data.tar.gz: ebd88e4908500dba5f7814dd0e74b4a3e114c95395cb3511f2a66868acf3a739
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5e8f68abd55e2626148f6ec248e2c9efcc7eeaaf58b6257370f33a91354d9924ebd660498b6704cf39fb6ba51919d120a306d6eef6e6aefb471d5cd19470d76f
|
7
|
+
data.tar.gz: d49279834a27c4665da66e509bcc9bf6625b3121ad644691a6ed76921917cb93e090b28f595c1c31ee7517d97073a68806b39ee8f404688bd4553303c02720a9
|
@@ -0,0 +1,32 @@
|
|
1
|
+
name: Run tests
|
2
|
+
|
3
|
+
on: [pull_request]
|
4
|
+
jobs:
|
5
|
+
ruby_tests:
|
6
|
+
runs-on: ubuntu-latest
|
7
|
+
strategy:
|
8
|
+
matrix:
|
9
|
+
ruby-version: ['jruby-9.2.9.0', '2.6', '2.7', '3.0']
|
10
|
+
steps:
|
11
|
+
- uses: actions/checkout@v2
|
12
|
+
- name: Setup
|
13
|
+
uses: ruby/setup-ruby@v1
|
14
|
+
with:
|
15
|
+
ruby-version: ${{ matrix.ruby-version }}
|
16
|
+
- name: Install Dependencies
|
17
|
+
run: bundle install
|
18
|
+
- name: Run Tests
|
19
|
+
env:
|
20
|
+
API_KEY: ${{ secrets.API_KEY }}
|
21
|
+
JRUBY_OPT: --2.0
|
22
|
+
run: bundle exec rake test
|
23
|
+
- name: Send coverage to Coveralls
|
24
|
+
uses: coverallsapp/github-action@master
|
25
|
+
with:
|
26
|
+
github-token: ${{ secrets.GITHUB_TOKEN }}
|
27
|
+
path-to-lcov: ./coverage/lcov/lcov.info
|
28
|
+
|
29
|
+
|
30
|
+
|
31
|
+
|
32
|
+
|
@@ -0,0 +1,27 @@
|
|
1
|
+
name: Publish Gem
|
2
|
+
|
3
|
+
on:
|
4
|
+
release:
|
5
|
+
types: [published]
|
6
|
+
|
7
|
+
jobs:
|
8
|
+
publish_gem:
|
9
|
+
runs-on: ubuntu-latest
|
10
|
+
steps:
|
11
|
+
- uses: actions/checkout@v2
|
12
|
+
- name: Setup
|
13
|
+
uses: ruby/setup-ruby@v1
|
14
|
+
with:
|
15
|
+
ruby-version: 2.7
|
16
|
+
- name: Install Dependencies
|
17
|
+
run: bundle install
|
18
|
+
- name: Publish Gem
|
19
|
+
run: |
|
20
|
+
mkdir -p $HOME/.gem
|
21
|
+
touch $HOME/.gem/credentials
|
22
|
+
chmod 0600 $HOME/.gem/credentials
|
23
|
+
printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
|
24
|
+
gem build *.gemspec
|
25
|
+
gem push *.gem
|
26
|
+
env:
|
27
|
+
GEM_HOST_API_KEY: "${{secrets.RUBYGEMS_AUTH_TOKEN}}"
|
data/.gitignore
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,14 @@
|
|
1
|
+
## [**5.4.4**](https://github.com/lob/lob-ruby/releases/tag/v5.4.4) (2021-12-16)
|
2
|
+
- [**202**](https://github.com/lob/lob-ruby/pull/202) Fix for coveralls API for GH actions and fix for error in resource_base.rb
|
3
|
+
## [**5.4.3**](https://github.com/lob/lob-ruby/releases/tag/v5.4.3) (2021-12-15)
|
4
|
+
- [**199**](https://github.com/lob/lob-ruby/pull/199) Refactor ResourceBase to make the options sent to rest-client more configurable
|
5
|
+
## [**5.4.2**](https://github.com/lob/lob-ruby/releases/tag/v5.4.2) (2021-12-08)
|
6
|
+
- [**198**](https://github.com/lob/lob-ruby/pull/198) specified ruby version in publish action
|
7
|
+
- [**195**](https://github.com/lob/lob-ruby/pull/195) added links to example scripts in README file & gh actions to release
|
8
|
+
## [**5.4.1**](https://github.com/lob/lob-ruby/releases/tag/v5.4.1) (2021-09-28)
|
9
|
+
- [**193**](https://github.com/lob/lob-ruby/pull/193) Minor patches
|
1
10
|
## [**5.4.0**](https://github.com/lob/lob-ruby/releases/tag/v5.4.0) (2021-09-21)
|
2
|
-
- [**
|
3
|
-
- [**191**](https://github.com/lob/lob-ruby/pull/191) feat(us_verifications): Reverse Geocoding endpoint
|
11
|
+
- [**191**](https://github.com/lob/lob-ruby/pull/191) Add support for reverse geocoding endpoint
|
4
12
|
## [**5.3.0**](https://github.com/lob/lob-ruby/releases/tag/v5.3.0) (2021-08-25)
|
5
13
|
- [**190**](https://github.com/lob/lob-ruby/pull/190) Adds support for bulk AV endpoints
|
6
14
|
## [**5.2.0**](https://github.com/lob/lob-ruby/releases/tag/v5.2.0) (2021-05-03)
|
data/README.md
CHANGED
@@ -113,80 +113,7 @@ There are simple scripts to demonstrate how to create all the core Lob objects (
|
|
113
113
|
|
114
114
|
## API Documentation
|
115
115
|
|
116
|
-
|
117
|
-
- [Versioning](https://lob.com/docs/ruby#version)
|
118
|
-
- [Errors](https://lob.com/docs/ruby#errors)
|
119
|
-
- [Rate Limiting](https://lob.com/docs/ruby#rate-limits)
|
120
|
-
- [Webhooks](https://lob.com/docs/ruby#webhooks)
|
121
|
-
- [Cancellation Windows](https://lob.com/docs/ruby#cancellation)
|
122
|
-
- [Scheduled Mailings](https://lob.com/docs/ruby#scheduled)
|
123
|
-
- [Metadata](https://lob.com/docs/ruby#metadata)
|
124
|
-
- [HTML Templates](https://lob.com/docs/ruby#templates)
|
125
|
-
- [Asset URLs](https://lob.com/docs/ruby#urls)
|
126
|
-
- **Addresses**
|
127
|
-
- [Address Book](https://lob.com/docs/ruby#addresses)
|
128
|
-
- [The Address Object](https://lob.com/docs/ruby#addresses_object)
|
129
|
-
- [Create an Address](https://lob.com/docs/ruby#addresses_create)
|
130
|
-
- [Retrieve an Address](https://lob.com/docs/ruby#addresses_retrieve)
|
131
|
-
- [Delete an Address](https://lob.com/docs/ruby#addresses_delete)
|
132
|
-
- [List all Addresses](https://lob.com/docs/ruby#addresses_list)
|
133
|
-
- **US Verification API**
|
134
|
-
- [US Verification API](https://lob.com/docs/ruby#us_verifications)
|
135
|
-
- [The US Verification Object](https://lob.com/docs/ruby#us_verifications_object)
|
136
|
-
- [Verify a US Address](https://lob.com/docs/ruby#us_verifications_create)
|
137
|
-
- [Bulk Verify US Addresses](https://lob.com/docs/ruby#bulk_us_verifications_create)
|
138
|
-
- [The US Zip Lookup Object](https://lob.com/docs/ruby#us_zip_lookups_object)
|
139
|
-
- [Lookup a US Zip Code](https://lob.com/docs/ruby#us_zip_lookups_create)
|
140
|
-
- [US Autocompletion API](https://lob.com/docs/ruby#us_autocompletions)
|
141
|
-
- [The US Autocompletion Object](https://lob.com/docs/ruby#us_autocompletions_object)
|
142
|
-
- [Autocomplete a US Address](https://lob.com/docs/ruby#us_autocompletions_create)
|
143
|
-
- [The US Autocompletion Test Environment](https://lob.com/docs/ruby#us-autocompletions-test-environment)
|
144
|
-
- **Int'l Verification API**
|
145
|
-
- [International Verifications](https://lob.com/docs/ruby#intl_verifications)
|
146
|
-
- [Verify an International Address](https://lob.com/docs/ruby#intl_verifications_create)
|
147
|
-
- [Bulk Verify International Addresses](https://lob.com/docs/ruby#bulk_intl_verifications_create)
|
148
|
-
- **Postcards API**
|
149
|
-
- [Postcards](https://lob.com/docs/ruby#postcards)
|
150
|
-
- [The Postcard Object](https://lob.com/docs/ruby#postcards_object)
|
151
|
-
- [Create a Postcard](https://lob.com/docs/ruby#postcards_create)
|
152
|
-
- [Retrieve a Postcard](https://lob.com/docs/ruby#postcards_retrieve)
|
153
|
-
- [Cancel a Postcard](https://lob.com/docs/ruby#postcards_delete)
|
154
|
-
- [List all Postcards](https://lob.com/docs/ruby#postcards_list)
|
155
|
-
- **Self Mailers API**
|
156
|
-
- [Self Mailers](https://lob.com/docs/ruby#self_mailers)
|
157
|
-
- [The Self Mailer Object](https://lob.com/docs/ruby#self_mailers_object)
|
158
|
-
- [Create a Self Mailer](https://lob.com/docs/ruby#self_mailers_create)
|
159
|
-
- [Retrieve a Self Mailer](https://lob.com/docs/ruby#self_mailers_retrieve)
|
160
|
-
- [Cancel a Self Mailer](https://lob.com/docs/ruby#self_mailers_delete)
|
161
|
-
- [List all Self Mailers](https://lob.com/docs/ruby#self_mailers_list)
|
162
|
-
- **Letters API**
|
163
|
-
- [Letters](https://lob.com/docs/ruby#letters)
|
164
|
-
- [The Letter Object](https://lob.com/docs/ruby#letters_object)
|
165
|
-
- [Create a Letter](https://lob.com/docs/ruby#letters_create)
|
166
|
-
- [Retrieve a Letter](https://lob.com/docs/ruby#letters_retrieve)
|
167
|
-
- [Cancel a Letter](https://lob.com/docs/ruby#letters_delete)
|
168
|
-
- [List all Letters](https://lob.com/docs/ruby#letters_list)
|
169
|
-
- **Checks API**
|
170
|
-
- [Checks](https://lob.com/docs/ruby#checks)
|
171
|
-
- [The Check Object](https://lob.com/docs/ruby#checks_object)
|
172
|
-
- [Create a Check](https://lob.com/docs/ruby#checks_create)
|
173
|
-
- [Retrieve a Check](https://lob.com/docs/ruby#checks_retrieve)
|
174
|
-
- [Cancel a Check](https://lob.com/docs/ruby#checks_delete)
|
175
|
-
- [List all Checks](https://lob.com/docs/ruby#checks_list)
|
176
|
-
- [Bank Accounts](https://lob.com/docs/ruby#bank-accounts)
|
177
|
-
- [The Bank Account Object](https://lob.com/docs/ruby#bankaccounts_object)
|
178
|
-
- [Create a Bank Account](https://lob.com/docs/ruby#bankaccounts_create)
|
179
|
-
- [Retrieve a Bank Account](https://lob.com/docs/ruby#bankaccounts_retrieve)
|
180
|
-
- [Delete a Bank Account](https://lob.com/docs/ruby#bankaccounts_delete)
|
181
|
-
- [Verify a Bank Account](https://lob.com/docs/ruby#bankaccounts_verify)
|
182
|
-
- [List all Bank Accounts](https://lob.com/docs/ruby#bankaccounts_list)
|
183
|
-
- **Appendix**
|
184
|
-
- [API Changelog](https://lob.com/docs/ruby#changelog)
|
185
|
-
- [The Tracking Event Object](https://lob.com/docs/ruby#tracking_event_object)
|
186
|
-
- [Events](https://lob.com/docs/ruby#events)
|
187
|
-
- [HTML Examples](https://lob.com/docs/ruby#html-examples)
|
188
|
-
- [Image Prepping](https://lob.com/docs/ruby#prepping)
|
189
|
-
- [US Verification Details](https://lob.com/docs/ruby#us_verification_details)
|
116
|
+
The full and comprehensive documentation of Lob's APIs is available [here](https://docs.lob.com/).
|
190
117
|
|
191
118
|
## Contributing
|
192
119
|
|
data/examples/README.md
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
# Ruby Examples
|
2
2
|
|
3
|
-
Here we have put together a handful of ruby examples to help get you started. Please read through the official [API Documentation](https://docs.lob.com) to get a complete sense of what to expect from each endpoint. As always, feel free to [contact us](https://lob.com/support) directly if you have any questions on implementation.
|
3
|
+
Here we have put together a handful of ruby examples to help get you started. Please read through the official [API Documentation](https://docs.lob.com) to get a complete sense of what to expect from each endpoint. As always, feel free to [contact us](https://lob.com/support) directly if you have any questions on implementation. Thank you for using Lob!
|
4
4
|
|
5
5
|
To run these example commands, make sure you have a supported version of Ruby installed, including all the necessary gems.
|
6
6
|
|
7
|
-
## /csv_checks/
|
7
|
+
## [/csv_checks/](./csv_checks/)
|
8
8
|
|
9
9
|
An example showing how to dynamically create checks from a CSV using HTML, merge variables, and Lob's [Checks API](https://lob.com/services/checks).
|
10
10
|
|
@@ -12,7 +12,7 @@ An example showing how to dynamically create checks from a CSV using HTML, merge
|
|
12
12
|
bundle exec ruby examples/csv_checks/create_checks.rb
|
13
13
|
```
|
14
14
|
|
15
|
-
## /csv_letters/
|
15
|
+
## [/csv_letters/](./csv_letters/)
|
16
16
|
|
17
17
|
An example showing how to dynamically create letters from a CSV using HTML, a custom font, merge variables, and Lob's [Letters API](https://lob.com/services/letters).
|
18
18
|
|
@@ -20,7 +20,7 @@ An example showing how to dynamically create letters from a CSV using HTML, a cu
|
|
20
20
|
bundle exec ruby examples/csv_letters/create_letters.rb
|
21
21
|
```
|
22
22
|
|
23
|
-
## /csv_postcards/
|
23
|
+
## [/csv_postcards/](./csv_postcards/)
|
24
24
|
|
25
25
|
An example showing how to dynamically create postcards from a CSV using HTML, a custom font, merge variables, and Lob's [Postcards API](https://lob.com/services/postcards).
|
26
26
|
|
@@ -28,7 +28,7 @@ An example showing how to dynamically create postcards from a CSV using HTML, a
|
|
28
28
|
bundle exec ruby examples/csv_postcards/create_postcards.rb
|
29
29
|
```
|
30
30
|
|
31
|
-
## /csv_verify/
|
31
|
+
## [/csv_verify/](./csv_verify/)
|
32
32
|
|
33
33
|
An example showing how to validate and cleanse a CSV spreadsheet full of shipping addresses using Lob's [US Verification API](https://lob.com/services/verifications).
|
34
34
|
|
@@ -38,7 +38,7 @@ Please note that if you are running this with a Test API Key, the verification A
|
|
38
38
|
bundle exec ruby examples/csv_verify/verify.rb
|
39
39
|
```
|
40
40
|
|
41
|
-
## /checks.rb
|
41
|
+
## [/checks.rb](./checks.rb)
|
42
42
|
|
43
43
|
An example showing how to create a check using Lob's [Checks API](https://lob.com/services/checks).
|
44
44
|
|
@@ -46,7 +46,7 @@ An example showing how to create a check using Lob's [Checks API](https://lob.co
|
|
46
46
|
bundle exec ruby examples/checks.rb
|
47
47
|
```
|
48
48
|
|
49
|
-
## /letters.rb
|
49
|
+
## [/letters.rb](./letters.rb)
|
50
50
|
|
51
51
|
An example showing how to create a letter using Lob's [Letters API](https://lob.com/services/letters).
|
52
52
|
|
@@ -54,7 +54,7 @@ An example showing how to create a letter using Lob's [Letters API](https://lob.
|
|
54
54
|
bundle exec ruby examples/letters.rb
|
55
55
|
```
|
56
56
|
|
57
|
-
## /postcards.rb
|
57
|
+
## [/postcards.rb](./postcards.rb)
|
58
58
|
|
59
59
|
An example showing how to create a postcard using Lob's [Postcards API](https://lob.com/services/postcards).
|
60
60
|
|
@@ -62,7 +62,7 @@ An example showing how to create a postcard using Lob's [Postcards API](https://
|
|
62
62
|
bundle exec ruby examples/postcards.rb
|
63
63
|
```
|
64
64
|
|
65
|
-
## /postcards_idempotent.rb
|
65
|
+
## [/postcards_idempotent.rb](./postcards_idempotent.rb)
|
66
66
|
|
67
67
|
An example showing how to create an idempotent postcard request using Lob's [Postcards API](https://lob.com/services/postcards).
|
68
68
|
|
@@ -70,7 +70,7 @@ An example showing how to create an idempotent postcard request using Lob's [Pos
|
|
70
70
|
bundle exec ruby examples/postcards_idempotent.rb
|
71
71
|
```
|
72
72
|
|
73
|
-
## /postcards_intl.rb
|
73
|
+
## [/postcards_intl.rb](./postcards_intl.rb)
|
74
74
|
|
75
75
|
An example showing how to create an international postcard using Lob's [Postcards API](https://lob.com/services/postcards).
|
76
76
|
|
@@ -78,7 +78,7 @@ An example showing how to create an international postcard using Lob's [Postcard
|
|
78
78
|
bundle exec ruby examples/postcards_intl.rb
|
79
79
|
```
|
80
80
|
|
81
|
-
## /postcards_remote.rb
|
81
|
+
## [/postcards_remote.rb](./postcards_remote.rb)
|
82
82
|
|
83
83
|
An example showing how to create a postcard with remote files, using Lob's [Postcards API](https://lob.com/services/postcards).
|
84
84
|
|
@@ -86,7 +86,7 @@ An example showing how to create a postcard with remote files, using Lob's [Post
|
|
86
86
|
bundle exec ruby examples/postcards_remote.rb
|
87
87
|
```
|
88
88
|
|
89
|
-
## /postcards_send_date.rb
|
89
|
+
## [/postcards_send_date.rb](./postcards_send_date.rb)
|
90
90
|
|
91
91
|
An example showing how to create a postcard with a specified send date, using Lob's [Postcards API](https://lob.com/services/postcards).
|
92
92
|
|
@@ -94,7 +94,7 @@ An example showing how to create a postcard with a specified send date, using Lo
|
|
94
94
|
bundle exec ruby examples/postcards_send_date.rb
|
95
95
|
```
|
96
96
|
|
97
|
-
## /postcards_template.rb
|
97
|
+
## [/postcards_template.rb](./postcards_template.rb)
|
98
98
|
|
99
99
|
An example showing how to create a postcard with a saved template, using Lob's [Postcards API](https://lob.com/services/postcards).
|
100
100
|
|
@@ -102,7 +102,7 @@ An example showing how to create a postcard with a saved template, using Lob's [
|
|
102
102
|
bundle exec ruby examples/postcards_template.rb
|
103
103
|
```
|
104
104
|
|
105
|
-
## /self_mailers.rb
|
105
|
+
## [/self_mailers.rb](./self_mailers.rb)
|
106
106
|
|
107
107
|
An example showing how to create a self mailer using Lob's Self Mailers API.
|
108
108
|
|
@@ -71,17 +71,22 @@ module Lob
|
|
71
71
|
if query != {}
|
72
72
|
url = "#{url}?#{build_nested_query(query)}"
|
73
73
|
end
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
74
|
+
|
75
|
+
client_params = {
|
76
|
+
headers: headers,
|
77
|
+
method: method,
|
78
|
+
url: url,
|
79
|
+
}
|
80
|
+
unless method == :delete || method == :get
|
81
|
+
if body and body[:merge_variables] and body[:merge_variables].class == Hash
|
82
|
+
body[:merge_variables] = body[:merge_variables].to_json
|
83
83
|
end
|
84
84
|
|
85
|
+
client_params[:payload] = body
|
86
|
+
end
|
87
|
+
begin
|
88
|
+
response = RestClient::Request.execute(client_params)
|
89
|
+
|
85
90
|
body = JSON.parse(response)
|
86
91
|
|
87
92
|
body.define_singleton_method(:_response) do
|
data/lib/lob/version.rb
CHANGED
data/lob.gemspec
CHANGED
@@ -23,8 +23,9 @@ Gem::Specification.new do |spec|
|
|
23
23
|
spec.add_development_dependency "rake", "~> 12.3.3"
|
24
24
|
spec.add_development_dependency "minitest", "~> 5.6.1"
|
25
25
|
spec.add_development_dependency "webmock", "~> 1.2"
|
26
|
-
spec.add_development_dependency "
|
27
|
-
spec.add_development_dependency "
|
26
|
+
spec.add_development_dependency "simplecov-lcov"
|
27
|
+
spec.add_development_dependency "coveralls_reborn", "~> 0.23.1"
|
28
|
+
spec.add_development_dependency "simplecov", "~> 0.21.0"
|
28
29
|
spec.add_development_dependency "json", "~> 2.3.1"
|
29
30
|
spec.add_development_dependency "uri", "~> 0.10.1"
|
30
31
|
end
|
data/spec/spec_helper.rb
CHANGED
@@ -3,10 +3,12 @@ $:.unshift File.expand_path("../lib", File.dirname(__FILE__))
|
|
3
3
|
require "simplecov"
|
4
4
|
require "coveralls"
|
5
5
|
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
6
|
+
require 'simplecov-lcov'
|
7
|
+
|
8
|
+
SimpleCov::Formatter::LcovFormatter.config.report_with_single_file = true
|
9
|
+
SimpleCov::Formatter::LcovFormatter.config.lcov_file_name = 'lcov.info'
|
10
|
+
|
11
|
+
SimpleCov.formatter = SimpleCov::Formatter::LcovFormatter
|
10
12
|
SimpleCov.start
|
11
13
|
|
12
14
|
require "lob"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lob
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.4.
|
4
|
+
version: 5.4.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Lob
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-12-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rest-client
|
@@ -73,33 +73,47 @@ dependencies:
|
|
73
73
|
- !ruby/object:Gem::Version
|
74
74
|
version: '1.2'
|
75
75
|
- !ruby/object:Gem::Dependency
|
76
|
-
name:
|
76
|
+
name: simplecov-lcov
|
77
|
+
requirement: !ruby/object:Gem::Requirement
|
78
|
+
requirements:
|
79
|
+
- - ">="
|
80
|
+
- !ruby/object:Gem::Version
|
81
|
+
version: '0'
|
82
|
+
type: :development
|
83
|
+
prerelease: false
|
84
|
+
version_requirements: !ruby/object:Gem::Requirement
|
85
|
+
requirements:
|
86
|
+
- - ">="
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
version: '0'
|
89
|
+
- !ruby/object:Gem::Dependency
|
90
|
+
name: coveralls_reborn
|
77
91
|
requirement: !ruby/object:Gem::Requirement
|
78
92
|
requirements:
|
79
93
|
- - "~>"
|
80
94
|
- !ruby/object:Gem::Version
|
81
|
-
version: 0.
|
95
|
+
version: 0.23.1
|
82
96
|
type: :development
|
83
97
|
prerelease: false
|
84
98
|
version_requirements: !ruby/object:Gem::Requirement
|
85
99
|
requirements:
|
86
100
|
- - "~>"
|
87
101
|
- !ruby/object:Gem::Version
|
88
|
-
version: 0.
|
102
|
+
version: 0.23.1
|
89
103
|
- !ruby/object:Gem::Dependency
|
90
104
|
name: simplecov
|
91
105
|
requirement: !ruby/object:Gem::Requirement
|
92
106
|
requirements:
|
93
107
|
- - "~>"
|
94
108
|
- !ruby/object:Gem::Version
|
95
|
-
version: 0.
|
109
|
+
version: 0.21.0
|
96
110
|
type: :development
|
97
111
|
prerelease: false
|
98
112
|
version_requirements: !ruby/object:Gem::Requirement
|
99
113
|
requirements:
|
100
114
|
- - "~>"
|
101
115
|
- !ruby/object:Gem::Version
|
102
|
-
version: 0.
|
116
|
+
version: 0.21.0
|
103
117
|
- !ruby/object:Gem::Dependency
|
104
118
|
name: json
|
105
119
|
requirement: !ruby/object:Gem::Requirement
|
@@ -135,8 +149,9 @@ executables: []
|
|
135
149
|
extensions: []
|
136
150
|
extra_rdoc_files: []
|
137
151
|
files:
|
152
|
+
- ".github/workflows/run_tests_job.yml"
|
153
|
+
- ".github/workflows/update_gem.yml"
|
138
154
|
- ".gitignore"
|
139
|
-
- ".travis.yml"
|
140
155
|
- CHANGELOG.md
|
141
156
|
- CONTRIBUTING.md
|
142
157
|
- Gemfile
|
@@ -232,7 +247,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
232
247
|
- !ruby/object:Gem::Version
|
233
248
|
version: '0'
|
234
249
|
requirements: []
|
235
|
-
rubygems_version: 3.
|
250
|
+
rubygems_version: 3.1.6
|
236
251
|
signing_key:
|
237
252
|
specification_version: 4
|
238
253
|
summary: Ruby wrapper for Lob.com API with ActiveRecord-style syntax
|