auth0 5.10.0 → 5.11.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: 40aab484c4f3864d285e116a837151c8e57872a9f879485bdf2433a926b4f668
4
- data.tar.gz: 7affd4b6a58f93b73bfa66c8aea85c8064e14a0c74e692e8952223dfda8947a3
3
+ metadata.gz: 226246c8ebc3b3a01dfb4729ea30e1f5e348a4fef155287ae7a8d4a050022392
4
+ data.tar.gz: c720dba1ef6fb9661a981fd5a4603e212d3e9803cd1706bdd0a3b2f961551c3d
5
5
  SHA512:
6
- metadata.gz: 68da74cb1dac1f68810babc29ceef1ea51d5ef16db4f462d728feb904e2734aae58882cf8a2e945710ccdd796d0c2957a378a42e36b2d3aeb0a286dd52604eae
7
- data.tar.gz: 16a91e8033143986d95d8857c66f2642640df6b8416ab7e88f0478668336447c95fbf30fda20a058656cea7936ae1b36d376f99ade14953b10e25faa458de4bb
6
+ metadata.gz: ec7dbd4a49e195981a2b13362e3e0ba7867194cc54a4aad4898edc82f57957415805645f2b8f99ccf6c9d3bca3dab729585c99a6aad44cae32fed094899d9795
7
+ data.tar.gz: 41221c45b0c22f5fb8ae2a31230f77aa49d60b6b1cfd59443d5e172aa8ed8704c9fb59f2c2af83a7213a7ab3ee678a330ba4b5b93bcfc24fa24985a2731a8903
data/.circleci/config.yml CHANGED
@@ -6,9 +6,9 @@ orbs:
6
6
  matrix_ruby_versions: &matrix_ruby_versions
7
7
  matrix:
8
8
  parameters:
9
- ruby_version: ["2.7", "3.0", "3.1"]
9
+ ruby_version: ["2.7", "3.0", "3.1", "3.2"]
10
10
  # Default version of ruby to use for lint and publishing
11
- default_ruby_version: &default_ruby_version "3.1"
11
+ default_ruby_version: &default_ruby_version "3.2"
12
12
 
13
13
  executors:
14
14
  ruby-image:
@@ -8,7 +8,7 @@
8
8
  // Update 'VARIANT' to pick a Ruby version: 3, 3.1, 3.0, 2, 2.7
9
9
  // Append -bullseye or -buster to pin to an OS version.
10
10
  // Use -bullseye variants on local on arm64/Apple Silicon.
11
- "VARIANT": "3.1",
11
+ "VARIANT": "3.2",
12
12
  // Options
13
13
  "NODE_VERSION": "lts/*"
14
14
  }
data/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # Change Log
2
2
 
3
+ ## [v5.11.0](https://github.com/auth0/ruby-auth0/tree/v5.11.0) (2023-01-27)
4
+ [Full Changelog](https://github.com/auth0/ruby-auth0/compare/v5.10.0...v5.11.0)
5
+
6
+ **Added**
7
+ - feat: support exchanging OTP codes for tokens [\#438](https://github.com/auth0/ruby-auth0/pull/438) ([stevehobbsdev](https://github.com/stevehobbsdev))
8
+ - [SDK-3869] Support client credentials in management client [\#437](https://github.com/auth0/ruby-auth0/pull/437) ([stevehobbsdev](https://github.com/stevehobbsdev))
9
+ - [SDK-3863] Add support for Client Assertion in authentication endpoints [\#434](https://github.com/auth0/ruby-auth0/pull/434) ([stevehobbsdev](https://github.com/stevehobbsdev))
10
+
11
+ **Changed**
12
+ - ci: include Ruby 3.2 in test matrix [\#436](https://github.com/auth0/ruby-auth0/pull/436) ([stevehobbsdev](https://github.com/stevehobbsdev))
13
+
3
14
  ## [v5.10.0](https://github.com/auth0/ruby-auth0/tree/v5.10.0) (2022-10-10)
4
15
  [Full Changelog](https://github.com/auth0/ruby-auth0/compare/v5.9.0...v5.10.0)
5
16
 
data/DEVELOPMENT.md ADDED
@@ -0,0 +1,35 @@
1
+ # Development
2
+
3
+ In order to set up the local environment you'd have to have Ruby installed and a few global gems used to run and record the unit tests. A working Ruby version can be taken from the [CI script](/.circleci/config.yml). At the moment of this writting we're using Ruby `2.5.7`.
4
+
5
+ > It is expected that every Pull Request introducing a fix, change or feature contains enough test coverage to assert the new behavior.
6
+
7
+ ## Running the tests
8
+
9
+ Install the gems required for this project.
10
+
11
+ ```bash
12
+ bundle install
13
+ ```
14
+
15
+ Finally, run the tests.
16
+
17
+ ```bash
18
+ bundle exec rake test
19
+ ```
20
+
21
+ ### Running only unit tests
22
+
23
+ You can run only the unit tests and ignore the integration tests by running the following:
24
+
25
+ ```bash
26
+ bundle exec rake spec
27
+ ```
28
+
29
+ ### Running only integration tests
30
+
31
+ You can run only the unit tests and ignore the integration tests by running the following:
32
+
33
+ ```bash
34
+ bundle exec rake integration
35
+ ```
data/EXAMPLES.md ADDED
@@ -0,0 +1,220 @@
1
+ # Examples using ruby-auth0
2
+
3
+ ## Build a URL to Universal Login Page
4
+
5
+ ```ruby
6
+ require 'auth0'
7
+
8
+ client = Auth0Client.new(
9
+ client_id: ENV['AUTH0_RUBY_CLIENT_ID'],
10
+ client_secret: ENV['AUTH0_RUBY_CLIENT_SECRET'],
11
+ domain: ENV['AUTH0_RUBY_DOMAIN'],
12
+ )
13
+
14
+ client.authorize_url 'http://localhost:3000'
15
+
16
+ > => #<URI::HTTPS https://YOUR_DOMAIN/authorize?client_id=YOUR_CLIENT_ID&response_type=code&redirect_uri=http%3A%2F%2Flocalhost%3A3000>
17
+
18
+ ```
19
+
20
+ ## Management API Client
21
+
22
+ As a simple example of how to get started with the management API, we'll create an admin route to point to a list of all users from Auth0:
23
+
24
+ ```ruby
25
+ # config/routes.rb
26
+ Rails.application.routes.draw do
27
+ # ...
28
+ get 'admin/users', to: 'all_users#index'
29
+ # ...
30
+ end
31
+ ```
32
+
33
+ ... and a Controller to handle that route:
34
+
35
+ ```ruby
36
+ # app/controllers/all_users_controller.rb
37
+ require 'auth0'
38
+
39
+ class AllUsersController < ApplicationController
40
+ # Get all users from Auth0 with "auth0" in their email.
41
+ def index
42
+ @params = {
43
+ q: "email:*auth0*",
44
+ fields: 'email,user_id,name',
45
+ include_fields: true,
46
+ page: 0,
47
+ per_page: 50
48
+ }
49
+ @users = auth0_client.users @params
50
+ end
51
+
52
+ private
53
+
54
+ # Setup the Auth0 API connection.
55
+ def auth0_client
56
+ @auth0_client ||= Auth0Client.new(
57
+ client_id: ENV['AUTH0_RUBY_CLIENT_ID'],
58
+ client_secret: ENV['AUTH0_RUBY_CLIENT_SECRET'],
59
+ domain: ENV['AUTH0_RUBY_DOMAIN'],
60
+ api_version: 2,
61
+ timeout: 15 # optional, defaults to 10
62
+ )
63
+ end
64
+ end
65
+ ```
66
+
67
+ In this example, we're using environment variables to store the values needed to connect to Auth0 and authorize. The `token` used above is an API token for the Management API with the scopes required to perform a specific action (in this case `read:users`). These tokens can be [generated manually](https://auth0.com/docs/api/management/v2/tokens#get-a-token-manually) using a test Application or with the [Application](https://manage.auth0.com/#/applications) being used for your project.
68
+
69
+ Finally, we'll add a view to display the results:
70
+
71
+ ```ruby
72
+ # app/views/all_users/index.html.erb
73
+ <h1>Users</h1>
74
+ <%= debug @params %>
75
+ <%= debug @users %>
76
+ ```
77
+
78
+ This should show the parameters passed to the `users` method and a list of users that matched the query (or an empty array if none).
79
+
80
+ ## Organizations
81
+
82
+ [Organizations](https://auth0.com/docs/organizations) is a set of features that provide better support for developers who build and maintain SaaS and Business-to-Business (B2B) applications.
83
+
84
+ Note that Organizations is currently only available to customers on our Enterprise and Startup subscription plans.
85
+
86
+ ### Logging in with an Organization
87
+
88
+ Configure the Authentication API client and pass your Organization ID to the authorize url:
89
+
90
+ ```ruby
91
+ require 'auth0'
92
+
93
+ @auth0_client ||= Auth0Client.new(
94
+ client_id: '{YOUR_APPLICATION_CLIENT_ID}',
95
+ client_secret: '{YOUR_APPLICATION_CLIENT_SECRET}',
96
+ domain: '{YOUR_TENANT}.auth0.com',
97
+ organization: "{YOUR_ORGANIZATION_ID}"
98
+ )
99
+
100
+ universal_login_url = @auth0_client.authorization_url("https://{YOUR_APPLICATION_CALLBACK_URL}")
101
+
102
+ # redirect_to universal_login_url
103
+ ```
104
+
105
+ ### Accepting user invitations
106
+
107
+ Auth0 Organizations allow users to be invited using emailed links, which will direct a user back to your application. The URL the user will arrive at is based on your configured `Application Login URI`, which you can change from your Application's settings inside the Auth0 dashboard. When they arrive at this URL, a `invitation` and `organization` query parameters will be provided
108
+
109
+ ```ruby
110
+ require 'auth0'
111
+
112
+ @auth0_client ||= Auth0Client.new(
113
+ client_id: '{YOUR_APPLICATION_CLIENT_ID}',
114
+ client_secret: '{YOUR_APPLICATION_CLIENT_ID}',
115
+ domain: '{YOUR_TENANT}.auth0.com',
116
+ organization: "{YOUR_ORGANIZATION_ID}"
117
+ )
118
+
119
+ universal_login_url = @auth0_client.authorization_url("https://{YOUR_APPLICATION_CALLBACK_URL}", {
120
+ organization: "{ORGANIZATION_QUERY_PARAM}", # You can override organization if needed
121
+ invitation: "{INVITATION_QUERY_PARAM}"
122
+ })
123
+
124
+ # redirect_to universal_login_url
125
+ ```
126
+
127
+ ## ID Token Validation
128
+
129
+ An ID token may be present in the credentials received after authentication. This token contains information associated with the user that has just logged in, provided the scope used contained `openid`. You can [read more about ID tokens here](https://auth0.com/docs/tokens/concepts/id-tokens).
130
+
131
+ Before accessing its contents, you must first validate the ID token to ensure it has not been tampered with and that it is meant for your application to consume. Use the `validate_id_token` method to do so:
132
+
133
+ ```ruby
134
+ begin
135
+ @auth0_client.validate_id_token 'YOUR_ID_TOKEN'
136
+ rescue Auth0::InvalidIdToken => e
137
+ # In this case the ID Token contents should not be trusted
138
+ end
139
+ ```
140
+
141
+ The method takes the following optional keyword parameters:
142
+
143
+ | Parameter | Type | Description | Default value |
144
+ | -------------- | -------------- | ------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- |
145
+ | `algorithm` | `JWTAlgorithm` | The [signing algorithm](https://auth0.com/docs/tokens/concepts/signing-algorithms) used by your Auth0 application. | `Auth0::Algorithm::RS256` (using the [JWKS URL](https://auth0.com/docs/tokens/concepts/jwks) of your **Auth0 Domain**) |
146
+ | `leeway` | Integer | Number of seconds to account for clock skew when validating the `exp`, `iat` and `azp` claims. | `60` |
147
+ | `nonce` | String | The `nonce` value you sent in the call to `/authorize`, if any. | `nil` |
148
+ | `max_age` | Integer | The `max_age` value you sent in the call to `/authorize`, if any. | `nil` |
149
+ | `issuer` | String | By default the `iss` claim will be checked against the URL of your **Auth0 Domain**. Use this parameter to override that. | `nil` |
150
+ | `audience` | String | By default the `aud` claim will be compared to your **Auth0 Client ID**. Use this parameter to override that. | `nil` |
151
+ | `organization` | String | By default the `org_id` claim will be compared to your **Organization ID**. Use this parameter to override that. | `nil` |
152
+
153
+ You can check the signing algorithm value under **Advanced Settings > OAuth > JsonWebToken Signature Algorithm** in your Auth0 application settings panel. [We recommend](https://auth0.com/docs/tokens/concepts/signing-algorithms#our-recommendation) that you make use of asymmetric signing algorithms like `RS256` instead of symmetric ones like `HS256`.
154
+
155
+ ```ruby
156
+ # HS256
157
+
158
+ begin
159
+ @auth0_client.validate_id_token 'YOUR_ID_TOKEN', algorithm: Auth0::Algorithm::HS256.secret('YOUR_SECRET')
160
+ rescue Auth0::InvalidIdToken => e
161
+ # Handle error
162
+ end
163
+
164
+ # RS256 with a custom JWKS URL
165
+
166
+ begin
167
+ @auth0_client.validate_id_token 'YOUR_ID_TOKEN', algorithm: Auth0::Algorithm::RS256.jwks_url('YOUR_URL')
168
+ rescue Auth0::InvalidIdToken => e
169
+ # Handle error
170
+ end
171
+ ```
172
+
173
+ ### Organization ID Token Validation
174
+
175
+ If an org_id claim is present in the Access Token, then the claim should be validated by the API to ensure that the value received is expected or known.
176
+
177
+ In particular:
178
+
179
+ - The issuer (iss) claim should be checked to ensure the token was issued by Auth0
180
+
181
+ - the org_id claim should be checked to ensure it is a value that is already known to the application. This could be validated against a known list of organization IDs, or perhaps checked in conjunction with the current request URL. e.g. the sub-domain may hint at what organization should be used to validate the Access Token.
182
+
183
+ Normally, validating the issuer would be enough to ensure that the token was issued by Auth0. In the case of organizations, additional checks should be made so that the organization within an Auth0 tenant is expected.
184
+
185
+ If the claim cannot be validated, then the application should deem the token invalid.
186
+
187
+ ```ruby
188
+ begin
189
+ @auth0_client.validate_id_token 'YOUR_ID_TOKEN', organization: '{Expected org_id}'
190
+ rescue Auth0::InvalidIdToken => e
191
+ # In this case the ID Token contents should not be trusted
192
+ end
193
+ ```
194
+
195
+ For more information, please read [Work with Tokens and Organizations](https://auth0.com/docs/organizations/using-tokens) on Auth0 Docs.
196
+
197
+ ## Use a private key to authenticate with Auth0
198
+
199
+ You are able to take advantage of using a JWT signed with a private key to authenticate with Auth0 in place of using a client secret.
200
+
201
+ **Note:** you must upload the corresponding public key to your Auth0 tenant, so that Auth0 is able to verify the JWT signature.
202
+
203
+ Specify the client assertion key when creating the Auth0 client as in the following example:
204
+
205
+ ```ruby
206
+ key_string = File.read 'key.pem'
207
+ key = OpenSSL::PKey::RSA.new key_string
208
+
209
+ client = Auth0Client.new(
210
+ domain: 'AUTH0_DOMAIN',
211
+ client_id: 'AUTH0_CLIENT_ID',
212
+ client_assertion_signing_key: key,
213
+ client_assertion_signing_alg: 'RS256')
214
+ ```
215
+
216
+ Some notes:
217
+
218
+ * If both `client_secret` and `client_assertion_signing_key` are specified, `client_assertion_signing_key` takes precedence
219
+ * `client_assertion_signing_alg` is optional and defaults to `RS256` if omitted
220
+ * Only `RS256`, `RS384` and `PS256` algorithms are supported by Auth0 currently
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- auth0 (5.10.0)
4
+ auth0 (5.11.0)
5
5
  addressable (~> 2.8)
6
6
  jwt (~> 2.5)
7
7
  rest-client (~> 2.1)
@@ -11,20 +11,20 @@ PATH
11
11
  GEM
12
12
  remote: https://rubygems.org/
13
13
  specs:
14
- actionpack (7.0.4)
15
- actionview (= 7.0.4)
16
- activesupport (= 7.0.4)
14
+ actionpack (7.0.4.2)
15
+ actionview (= 7.0.4.2)
16
+ activesupport (= 7.0.4.2)
17
17
  rack (~> 2.0, >= 2.2.0)
18
18
  rack-test (>= 0.6.3)
19
19
  rails-dom-testing (~> 2.0)
20
20
  rails-html-sanitizer (~> 1.0, >= 1.2.0)
21
- actionview (7.0.4)
22
- activesupport (= 7.0.4)
21
+ actionview (7.0.4.2)
22
+ activesupport (= 7.0.4.2)
23
23
  builder (~> 3.1)
24
24
  erubi (~> 1.4)
25
25
  rails-dom-testing (~> 2.0)
26
26
  rails-html-sanitizer (~> 1.1, >= 1.2.0)
27
- activesupport (7.0.4)
27
+ activesupport (7.0.4.2)
28
28
  concurrent-ruby (~> 1.0, >= 1.0.2)
29
29
  i18n (>= 1.6, < 2)
30
30
  minitest (>= 5.1)
@@ -33,8 +33,7 @@ GEM
33
33
  public_suffix (>= 2.0.2, < 6.0)
34
34
  ast (2.4.2)
35
35
  builder (3.2.4)
36
- coderay (1.1.3)
37
- concurrent-ruby (1.1.10)
36
+ concurrent-ruby (1.2.0)
38
37
  coveralls (0.7.1)
39
38
  multi_json (~> 1.3)
40
39
  rest-client
@@ -52,7 +51,7 @@ GEM
52
51
  dotenv-rails (2.8.1)
53
52
  dotenv (= 2.8.1)
54
53
  railties (>= 3.2)
55
- erubi (1.11.0)
54
+ erubi (1.12.0)
56
55
  faker (2.23.0)
57
56
  i18n (>= 1.8.11, < 2)
58
57
  fuubar (2.5.1)
@@ -65,55 +64,50 @@ GEM
65
64
  domain_name (~> 0.5)
66
65
  i18n (1.12.0)
67
66
  concurrent-ruby (~> 1.0)
68
- io-console (0.5.11)
69
- irb (1.4.2)
67
+ io-console (0.6.0)
68
+ irb (1.6.2)
70
69
  reline (>= 0.3.0)
71
- json (2.6.2)
72
- jwt (2.5.0)
73
- loofah (2.19.0)
70
+ json (2.6.3)
71
+ jwt (2.6.0)
72
+ loofah (2.19.1)
74
73
  crass (~> 1.0.2)
75
74
  nokogiri (>= 1.5.9)
76
- method_source (0.9.2)
75
+ method_source (1.0.0)
77
76
  mime-types (3.4.1)
78
77
  mime-types-data (~> 3.2015)
79
78
  mime-types-data (3.2022.0105)
80
- minitest (5.16.3)
79
+ minitest (5.17.0)
81
80
  multi_json (1.15.0)
82
81
  netrc (0.11.0)
83
- nokogiri (1.13.8-x86_64-linux)
82
+ nokogiri (1.14.0-x86_64-linux)
84
83
  racc (~> 1.4)
85
84
  parallel (1.22.1)
86
- parser (3.1.2.1)
85
+ parser (3.2.0.0)
87
86
  ast (~> 2.4.1)
88
- pp (0.3.0)
87
+ pp (0.4.0)
89
88
  prettyprint
90
89
  prettyprint (0.1.1)
91
- pry (0.12.2)
92
- coderay (~> 1.1.0)
93
- method_source (~> 0.9.0)
94
- pry-nav (0.3.0)
95
- pry (>= 0.9.10, < 0.13.0)
96
- public_suffix (5.0.0)
97
- racc (1.6.0)
98
- rack (2.2.4)
90
+ public_suffix (5.0.1)
91
+ racc (1.6.2)
92
+ rack (2.2.6.2)
99
93
  rack-test (0.8.3)
100
94
  rack (>= 1.0, < 3)
101
95
  rails-dom-testing (2.0.3)
102
96
  activesupport (>= 4.2.0)
103
97
  nokogiri (>= 1.6)
104
- rails-html-sanitizer (1.4.3)
105
- loofah (~> 2.3)
106
- railties (7.0.4)
107
- actionpack (= 7.0.4)
108
- activesupport (= 7.0.4)
98
+ rails-html-sanitizer (1.5.0)
99
+ loofah (~> 2.19, >= 2.19.1)
100
+ railties (7.0.4.2)
101
+ actionpack (= 7.0.4.2)
102
+ activesupport (= 7.0.4.2)
109
103
  method_source
110
104
  rake (>= 12.2)
111
105
  thor (~> 1.0)
112
106
  zeitwerk (~> 2.5)
113
107
  rainbow (3.1.1)
114
108
  rake (13.0.6)
115
- regexp_parser (2.6.0)
116
- reline (0.3.1)
109
+ regexp_parser (2.6.2)
110
+ reline (0.3.2)
117
111
  io-console (~> 0.5)
118
112
  rest-client (2.1.0)
119
113
  http-accept (>= 1.7.0, < 2.0)
@@ -122,37 +116,37 @@ GEM
122
116
  netrc (~> 0.8)
123
117
  retryable (3.0.5)
124
118
  rexml (3.2.5)
125
- rspec (3.11.0)
126
- rspec-core (~> 3.11.0)
127
- rspec-expectations (~> 3.11.0)
128
- rspec-mocks (~> 3.11.0)
129
- rspec-core (3.11.0)
130
- rspec-support (~> 3.11.0)
131
- rspec-expectations (3.11.1)
119
+ rspec (3.12.0)
120
+ rspec-core (~> 3.12.0)
121
+ rspec-expectations (~> 3.12.0)
122
+ rspec-mocks (~> 3.12.0)
123
+ rspec-core (3.12.0)
124
+ rspec-support (~> 3.12.0)
125
+ rspec-expectations (3.12.2)
132
126
  diff-lcs (>= 1.2.0, < 2.0)
133
- rspec-support (~> 3.11.0)
134
- rspec-mocks (3.11.1)
127
+ rspec-support (~> 3.12.0)
128
+ rspec-mocks (3.12.3)
135
129
  diff-lcs (>= 1.2.0, < 2.0)
136
- rspec-support (~> 3.11.0)
137
- rspec-support (3.11.1)
138
- rubocop (1.36.0)
130
+ rspec-support (~> 3.12.0)
131
+ rspec-support (3.12.0)
132
+ rubocop (1.44.1)
139
133
  json (~> 2.3)
140
134
  parallel (~> 1.10)
141
- parser (>= 3.1.2.1)
135
+ parser (>= 3.2.0.0)
142
136
  rainbow (>= 2.2.2, < 4.0)
143
137
  regexp_parser (>= 1.8, < 3.0)
144
138
  rexml (>= 3.2.5, < 4.0)
145
- rubocop-ast (>= 1.20.1, < 2.0)
139
+ rubocop-ast (>= 1.24.1, < 2.0)
146
140
  ruby-progressbar (~> 1.7)
147
- unicode-display_width (>= 1.4.0, < 3.0)
148
- rubocop-ast (1.21.0)
141
+ unicode-display_width (>= 2.4.0, < 3.0)
142
+ rubocop-ast (1.24.1)
149
143
  parser (>= 3.1.1.0)
150
- rubocop-rails (2.16.1)
144
+ rubocop-rails (2.17.4)
151
145
  activesupport (>= 4.2.0)
152
146
  rack (>= 1.1)
153
147
  rubocop (>= 1.33.0, < 2.0)
154
148
  ruby-progressbar (1.11.0)
155
- simplecov (0.21.2)
149
+ simplecov (0.22.0)
156
150
  docile (~> 1.1)
157
151
  simplecov-html (~> 0.11)
158
152
  simplecov_json_formatter (~> 0.1)
@@ -165,22 +159,22 @@ GEM
165
159
  term-ansicolor (1.7.1)
166
160
  tins (~> 1.0)
167
161
  thor (1.2.1)
168
- timecop (0.9.5)
169
- tins (1.31.1)
162
+ timecop (0.9.6)
163
+ tins (1.32.1)
170
164
  sync
171
165
  tzinfo (2.0.5)
172
166
  concurrent-ruby (~> 1.0)
173
167
  unf (0.1.4)
174
168
  unf_ext
175
169
  unf_ext (0.0.8.2)
176
- unicode-display_width (2.3.0)
170
+ unicode-display_width (2.4.2)
177
171
  vcr (6.1.0)
178
172
  webmock (3.18.1)
179
173
  addressable (>= 2.8.0)
180
174
  crack (>= 0.3.2)
181
175
  hashdiff (>= 0.4.0, < 2.0.0)
182
176
  zache (0.12.0)
183
- zeitwerk (2.6.1)
177
+ zeitwerk (2.6.6)
184
178
 
185
179
  PLATFORMS
186
180
  x86_64-linux
@@ -195,8 +189,6 @@ DEPENDENCIES
195
189
  gem-release (~> 0.7)
196
190
  irb
197
191
  pp
198
- pry (~> 0.10)
199
- pry-nav (~> 0.2)
200
192
  rack (~> 2.1)
201
193
  rack-test (~> 0.6)
202
194
  rake (~> 13.0)
@@ -210,4 +202,4 @@ DEPENDENCIES
210
202
  webmock
211
203
 
212
204
  BUNDLED WITH
213
- 2.3.11
205
+ 2.3.26