auth0 4.15.0 → 5.0.1
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/.circleci/config.yml +26 -3
- data/.github/CODEOWNERS +1 -1
- data/.github/ISSUE_TEMPLATE/config.yml +8 -0
- data/.github/ISSUE_TEMPLATE/feature_request.md +39 -0
- data/.github/ISSUE_TEMPLATE/report_a_bug.md +55 -0
- data/.gitignore +1 -1
- data/.yardoc/checksums +22 -0
- data/.yardoc/complete +0 -0
- data/.yardoc/object_types +0 -0
- data/.yardoc/objects/root.dat +0 -0
- data/.yardoc/proxy_types +0 -0
- data/CHANGELOG.md +83 -0
- data/Gemfile +0 -1
- data/README.md +5 -7
- data/Rakefile +0 -22
- data/auth0.gemspec +4 -3
- data/examples/ruby-api/.gitignore +0 -6
- data/lib/auth0/api/authentication_endpoints.rb +6 -220
- data/lib/auth0/api/v2/jobs.rb +11 -1
- data/lib/auth0/api/v2/tickets.rb +12 -1
- data/lib/auth0/api/v2/users.rb +21 -8
- data/lib/auth0/exception.rb +2 -7
- data/lib/auth0/mixins.rb +0 -1
- data/lib/auth0/mixins/access_token_struct.rb +2 -2
- data/lib/auth0/mixins/api_token_struct.rb +2 -2
- data/lib/auth0/mixins/httpproxy.rb +3 -1
- data/lib/auth0/mixins/initializer.rb +1 -7
- data/lib/auth0/mixins/permission_struct.rb +2 -2
- data/lib/auth0/mixins/validation.rb +1 -1
- data/lib/auth0/version.rb +1 -1
- data/spec/integration/lib/auth0/api/api_authentication_spec.rb +1 -1
- data/spec/integration/lib/auth0/api/v2/api_jobs_spec.rb +13 -1
- data/spec/integration/lib/auth0/api/v2/api_roles_spec.rb +1 -1
- data/spec/integration/lib/auth0/api/v2/api_tickets_spec.rb +7 -1
- data/spec/integration/lib/auth0/api/v2/api_user_blocks_spec.rb +1 -1
- data/spec/integration/lib/auth0/api/v2/api_users_spec.rb +1 -1
- data/spec/lib/auth0/api/v2/jobs_spec.rb +17 -0
- data/spec/lib/auth0/api/v2/roles_spec.rb +4 -4
- data/spec/lib/auth0/api/v2/tickets_spec.rb +17 -0
- data/spec/lib/auth0/api/v2/users_spec.rb +38 -11
- data/spec/lib/auth0/mixins/httpproxy_spec.rb +2 -2
- data/spec/spec_helper.rb +6 -1
- data/spec/support/credentials.rb +0 -19
- metadata +43 -44
- data/.github/ISSUE_TEMPLATE.md +0 -39
- data/Gemfile.lock +0 -229
- data/deploy_documentation.sh +0 -29
- data/doc_config/templates/default/fulldoc/html/css/full_list.css +0 -79
- data/doc_config/templates/default/fulldoc/html/css/style.css +0 -546
- data/doc_config/templates/default/layout/html/breadcrumb.erb +0 -11
- data/doc_config/templates/default/layout/html/footer.erb +0 -115
- data/doc_config/templates/default/layout/html/headers.erb +0 -17
- data/doc_config/templates/default/layout/html/layout.erb +0 -27
- data/lib/auth0/api/v1.rb +0 -19
- data/lib/auth0/api/v1/clients.rb +0 -58
- data/lib/auth0/api/v1/connections.rb +0 -68
- data/lib/auth0/api/v1/logs.rb +0 -43
- data/lib/auth0/api/v1/rules.rb +0 -57
- data/lib/auth0/api/v1/users.rb +0 -227
- data/spec/lib/auth0/api/authentication_endpoints_spec.rb +0 -703
@@ -141,7 +141,7 @@ describe Auth0::Mixins::HTTPProxy do
|
|
141
141
|
expect { @instance.send(http_method, '/test') }.to raise_error(Auth0::ServerError)
|
142
142
|
end
|
143
143
|
|
144
|
-
it 'should escape path with URI.escape' do
|
144
|
+
it 'should escape path with Addressable::URI.escape' do
|
145
145
|
expect(RestClient::Request).to receive(:execute).with(method: http_method,
|
146
146
|
url: '/te%20st',
|
147
147
|
timeout: nil,
|
@@ -275,7 +275,7 @@ describe Auth0::Mixins::HTTPProxy do
|
|
275
275
|
expect { @instance.send(http_method, '/test') }.to raise_error(Auth0::ServerError)
|
276
276
|
end
|
277
277
|
|
278
|
-
it 'should escape path with URI.escape' do
|
278
|
+
it 'should escape path with Addressable::URI.escape' do
|
279
279
|
expect(RestClient::Request).to receive(:execute).with(method: http_method,
|
280
280
|
url: '/te%20st',
|
281
281
|
timeout: nil,
|
data/spec/spec_helper.rb
CHANGED
@@ -4,6 +4,11 @@ require 'faker'
|
|
4
4
|
require 'json'
|
5
5
|
require 'auth0'
|
6
6
|
|
7
|
+
if RUBY_VERSION >= '2.7.2'
|
8
|
+
# NOTE: https://bugs.ruby-lang.org/issues/17000
|
9
|
+
Warning[:deprecated] = true
|
10
|
+
end
|
11
|
+
|
7
12
|
require 'simplecov'
|
8
13
|
SimpleCov.start
|
9
14
|
|
@@ -60,4 +65,4 @@ def entity_suffix
|
|
60
65
|
'rubytest'
|
61
66
|
end
|
62
67
|
|
63
|
-
puts "Entity suffix is #{entity_suffix}"
|
68
|
+
puts "Entity suffix is #{entity_suffix}"
|
data/spec/support/credentials.rb
CHANGED
@@ -1,24 +1,5 @@
|
|
1
1
|
module Credentials
|
2
2
|
module_function
|
3
|
-
|
4
|
-
def v1_creds
|
5
|
-
{
|
6
|
-
client_id: ENV['CLIENT_ID'],
|
7
|
-
client_secret: ENV['CLIENT_SECRET'],
|
8
|
-
domain: ENV['DOMAIN'],
|
9
|
-
api_version: 1
|
10
|
-
}
|
11
|
-
end
|
12
|
-
|
13
|
-
def v1_global_creds
|
14
|
-
{
|
15
|
-
client_id: ENV['GLOBAL_CLIENT_ID'],
|
16
|
-
client_secret: ENV['GLOBAL_CLIENT_SECRET'],
|
17
|
-
domain: ENV['DOMAIN'],
|
18
|
-
api_version: 1
|
19
|
-
}
|
20
|
-
end
|
21
|
-
|
22
3
|
def v2_creds
|
23
4
|
{
|
24
5
|
domain: ENV.fetch( 'DOMAIN', 'DOMAIN' ),
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: auth0
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 5.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Auth0
|
@@ -11,7 +11,7 @@ authors:
|
|
11
11
|
autorequire:
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
|
-
date:
|
14
|
+
date: 2021-02-05 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: rest-client
|
@@ -55,6 +55,34 @@ dependencies:
|
|
55
55
|
- - "~>"
|
56
56
|
- !ruby/object:Gem::Version
|
57
57
|
version: 0.12.0
|
58
|
+
- !ruby/object:Gem::Dependency
|
59
|
+
name: addressable
|
60
|
+
requirement: !ruby/object:Gem::Requirement
|
61
|
+
requirements:
|
62
|
+
- - "~>"
|
63
|
+
- !ruby/object:Gem::Version
|
64
|
+
version: 2.7.0
|
65
|
+
type: :runtime
|
66
|
+
prerelease: false
|
67
|
+
version_requirements: !ruby/object:Gem::Requirement
|
68
|
+
requirements:
|
69
|
+
- - "~>"
|
70
|
+
- !ruby/object:Gem::Version
|
71
|
+
version: 2.7.0
|
72
|
+
- !ruby/object:Gem::Dependency
|
73
|
+
name: bundler
|
74
|
+
requirement: !ruby/object:Gem::Requirement
|
75
|
+
requirements:
|
76
|
+
- - ">="
|
77
|
+
- !ruby/object:Gem::Version
|
78
|
+
version: '0'
|
79
|
+
type: :development
|
80
|
+
prerelease: false
|
81
|
+
version_requirements: !ruby/object:Gem::Requirement
|
82
|
+
requirements:
|
83
|
+
- - ">="
|
84
|
+
- !ruby/object:Gem::Version
|
85
|
+
version: '0'
|
58
86
|
- !ruby/object:Gem::Dependency
|
59
87
|
name: rake
|
60
88
|
requirement: !ruby/object:Gem::Requirement
|
@@ -145,20 +173,14 @@ dependencies:
|
|
145
173
|
requirements:
|
146
174
|
- - "~>"
|
147
175
|
- !ruby/object:Gem::Version
|
148
|
-
version: '3.
|
149
|
-
- - ">="
|
150
|
-
- !ruby/object:Gem::Version
|
151
|
-
version: 3.1.0
|
176
|
+
version: '3.5'
|
152
177
|
type: :development
|
153
178
|
prerelease: false
|
154
179
|
version_requirements: !ruby/object:Gem::Requirement
|
155
180
|
requirements:
|
156
181
|
- - "~>"
|
157
182
|
- !ruby/object:Gem::Version
|
158
|
-
version: '3.
|
159
|
-
- - ">="
|
160
|
-
- !ruby/object:Gem::Version
|
161
|
-
version: 3.1.0
|
183
|
+
version: '3.5'
|
162
184
|
- !ruby/object:Gem::Dependency
|
163
185
|
name: rack-test
|
164
186
|
requirement: !ruby/object:Gem::Requirement
|
@@ -207,28 +229,14 @@ dependencies:
|
|
207
229
|
requirements:
|
208
230
|
- - "~>"
|
209
231
|
- !ruby/object:Gem::Version
|
210
|
-
version: '
|
211
|
-
type: :development
|
212
|
-
prerelease: false
|
213
|
-
version_requirements: !ruby/object:Gem::Requirement
|
214
|
-
requirements:
|
215
|
-
- - "~>"
|
216
|
-
- !ruby/object:Gem::Version
|
217
|
-
version: '1.4'
|
218
|
-
- !ruby/object:Gem::Dependency
|
219
|
-
name: yard
|
220
|
-
requirement: !ruby/object:Gem::Requirement
|
221
|
-
requirements:
|
222
|
-
- - "~>"
|
223
|
-
- !ruby/object:Gem::Version
|
224
|
-
version: 0.9.12
|
232
|
+
version: '2.0'
|
225
233
|
type: :development
|
226
234
|
prerelease: false
|
227
235
|
version_requirements: !ruby/object:Gem::Requirement
|
228
236
|
requirements:
|
229
237
|
- - "~>"
|
230
238
|
- !ruby/object:Gem::Version
|
231
|
-
version: 0
|
239
|
+
version: '2.0'
|
232
240
|
- !ruby/object:Gem::Dependency
|
233
241
|
name: gem-release
|
234
242
|
requirement: !ruby/object:Gem::Requirement
|
@@ -255,19 +263,25 @@ files:
|
|
255
263
|
- ".env.example"
|
256
264
|
- ".gemrelease"
|
257
265
|
- ".github/CODEOWNERS"
|
258
|
-
- ".github/ISSUE_TEMPLATE.
|
266
|
+
- ".github/ISSUE_TEMPLATE/config.yml"
|
267
|
+
- ".github/ISSUE_TEMPLATE/feature_request.md"
|
268
|
+
- ".github/ISSUE_TEMPLATE/report_a_bug.md"
|
259
269
|
- ".github/PULL_REQUEST_TEMPLATE.md"
|
260
270
|
- ".github/stale.yml"
|
261
271
|
- ".gitignore"
|
262
272
|
- ".rspec"
|
263
273
|
- ".rubocop.yml"
|
264
274
|
- ".rubocop_todo.yml"
|
275
|
+
- ".yardoc/checksums"
|
276
|
+
- ".yardoc/complete"
|
277
|
+
- ".yardoc/object_types"
|
278
|
+
- ".yardoc/objects/root.dat"
|
279
|
+
- ".yardoc/proxy_types"
|
265
280
|
- CHANGELOG.md
|
266
281
|
- CODE_OF_CONDUCT.md
|
267
282
|
- DEPLOYMENT.md
|
268
283
|
- Dockerfile
|
269
284
|
- Gemfile
|
270
|
-
- Gemfile.lock
|
271
285
|
- Guardfile
|
272
286
|
- LICENSE
|
273
287
|
- README.md
|
@@ -275,13 +289,6 @@ files:
|
|
275
289
|
- Rakefile
|
276
290
|
- auth0.gemspec
|
277
291
|
- codecov.yml
|
278
|
-
- deploy_documentation.sh
|
279
|
-
- doc_config/templates/default/fulldoc/html/css/full_list.css
|
280
|
-
- doc_config/templates/default/fulldoc/html/css/style.css
|
281
|
-
- doc_config/templates/default/layout/html/breadcrumb.erb
|
282
|
-
- doc_config/templates/default/layout/html/footer.erb
|
283
|
-
- doc_config/templates/default/layout/html/headers.erb
|
284
|
-
- doc_config/templates/default/layout/html/layout.erb
|
285
292
|
- examples/ruby-api/.env.example
|
286
293
|
- examples/ruby-api/.gitignore
|
287
294
|
- examples/ruby-api/Gemfile
|
@@ -352,12 +359,6 @@ files:
|
|
352
359
|
- lib/auth0.rb
|
353
360
|
- lib/auth0/algorithm.rb
|
354
361
|
- lib/auth0/api/authentication_endpoints.rb
|
355
|
-
- lib/auth0/api/v1.rb
|
356
|
-
- lib/auth0/api/v1/clients.rb
|
357
|
-
- lib/auth0/api/v1/connections.rb
|
358
|
-
- lib/auth0/api/v1/logs.rb
|
359
|
-
- lib/auth0/api/v1/rules.rb
|
360
|
-
- lib/auth0/api/v1/users.rb
|
361
362
|
- lib/auth0/api/v2.rb
|
362
363
|
- lib/auth0/api/v2/anomaly.rb
|
363
364
|
- lib/auth0/api/v2/blacklists.rb
|
@@ -580,7 +581,6 @@ files:
|
|
580
581
|
- spec/integration/lib/auth0/api/v2/api_user_blocks_spec.rb
|
581
582
|
- spec/integration/lib/auth0/api/v2/api_users_spec.rb
|
582
583
|
- spec/integration/lib/auth0/auth0_client_spec.rb
|
583
|
-
- spec/lib/auth0/api/authentication_endpoints_spec.rb
|
584
584
|
- spec/lib/auth0/api/v2/anomaly_spec.rb
|
585
585
|
- spec/lib/auth0/api/v2/blacklists_spec.rb
|
586
586
|
- spec/lib/auth0/api/v2/client_grants_spec.rb
|
@@ -632,7 +632,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
632
632
|
- !ruby/object:Gem::Version
|
633
633
|
version: '0'
|
634
634
|
requirements: []
|
635
|
-
rubygems_version: 3.
|
635
|
+
rubygems_version: 3.0.9
|
636
636
|
signing_key:
|
637
637
|
specification_version: 4
|
638
638
|
summary: Auth0 API Client
|
@@ -824,7 +824,6 @@ test_files:
|
|
824
824
|
- spec/integration/lib/auth0/api/v2/api_user_blocks_spec.rb
|
825
825
|
- spec/integration/lib/auth0/api/v2/api_users_spec.rb
|
826
826
|
- spec/integration/lib/auth0/auth0_client_spec.rb
|
827
|
-
- spec/lib/auth0/api/authentication_endpoints_spec.rb
|
828
827
|
- spec/lib/auth0/api/v2/anomaly_spec.rb
|
829
828
|
- spec/lib/auth0/api/v2/blacklists_spec.rb
|
830
829
|
- spec/lib/auth0/api/v2/client_grants_spec.rb
|
data/.github/ISSUE_TEMPLATE.md
DELETED
@@ -1,39 +0,0 @@
|
|
1
|
-
In order to efficiently and accurately address your issue or feature request, please read through the template below and answer all relevant questions. Your additional work here is greatly appreciated and will help us respond as quickly as possible. Please delete any sections or questions below that do not pertain to this request.
|
2
|
-
|
3
|
-
For general support or usage questions, please use the [Auth0 Community](https://community.auth0.com/) or [Auth0 Support](https://support.auth0.com.).
|
4
|
-
|
5
|
-
### Description
|
6
|
-
|
7
|
-
Description of the bug or feature request and why it's a problem. Consider including:
|
8
|
-
|
9
|
-
- The use case or overall problem you're trying to solve
|
10
|
-
- Information about when the problem started
|
11
|
-
|
12
|
-
### Prerequisites
|
13
|
-
|
14
|
-
* [ ] I have read the [Auth0 general contribution guidelines](https://github.com/auth0/open-source-template/blob/master/GENERAL-CONTRIBUTING.md)
|
15
|
-
* [ ] I have read the [Auth0 Code of Conduct](https://github.com/auth0/open-source-template/blob/master/CODE-OF-CONDUCT.md)
|
16
|
-
* [ ] Did you check the documentation ([repo README](https://github.com/auth0/ruby-auth0/blob/master/README.md) or [Quickstart](https://auth0.com/docs/quickstart/backend/rails))?
|
17
|
-
* [ ] Did you check the [Auth0 Community](https://community.auth0.com/)?
|
18
|
-
* [ ] Are you reporting this to the correct repository? See also the [OmniAuth-Auth0 strategy](https://github.com/auth0/omniauth-auth0) for logging in with Rails.
|
19
|
-
* [ ] Are there any related or duplicate [Issues](https://github.com/auth0/ruby-auth0/issues) or [PRs](https://github.com/auth0/ruby-auth0/pulls) for this issue?
|
20
|
-
|
21
|
-
### Environment
|
22
|
-
|
23
|
-
Please provide the following:
|
24
|
-
|
25
|
-
* Ruby Auth0 version:
|
26
|
-
* Ruby version:
|
27
|
-
* Rails version (if applicable):
|
28
|
-
* Browser version (if applicable):
|
29
|
-
* Additional gems that might be affecting your instance
|
30
|
-
|
31
|
-
### Reproduction
|
32
|
-
|
33
|
-
Detail the steps taken to reproduce this error and note if this issue can be reproduced consistently or if it is intermittent.
|
34
|
-
|
35
|
-
Please include:
|
36
|
-
|
37
|
-
- Log files (redact/remove sensitive information)
|
38
|
-
- Application settings (redact/remove sensitive information)
|
39
|
-
- Screenshots, if helpful
|
data/Gemfile.lock
DELETED
@@ -1,229 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: .
|
3
|
-
specs:
|
4
|
-
auth0 (4.15.0)
|
5
|
-
jwt (~> 2.2.0)
|
6
|
-
rest-client (~> 2.0.0)
|
7
|
-
zache (~> 0.12.0)
|
8
|
-
|
9
|
-
GEM
|
10
|
-
remote: https://rubygems.org/
|
11
|
-
specs:
|
12
|
-
actionpack (6.0.3.2)
|
13
|
-
actionview (= 6.0.3.2)
|
14
|
-
activesupport (= 6.0.3.2)
|
15
|
-
rack (~> 2.0, >= 2.0.8)
|
16
|
-
rack-test (>= 0.6.3)
|
17
|
-
rails-dom-testing (~> 2.0)
|
18
|
-
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
19
|
-
actionview (6.0.3.2)
|
20
|
-
activesupport (= 6.0.3.2)
|
21
|
-
builder (~> 3.1)
|
22
|
-
erubi (~> 1.4)
|
23
|
-
rails-dom-testing (~> 2.0)
|
24
|
-
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
25
|
-
activesupport (6.0.3.2)
|
26
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
27
|
-
i18n (>= 0.7, < 2)
|
28
|
-
minitest (~> 5.1)
|
29
|
-
tzinfo (~> 1.1)
|
30
|
-
zeitwerk (~> 2.2, >= 2.2.2)
|
31
|
-
addressable (2.7.0)
|
32
|
-
public_suffix (>= 2.0.2, < 5.0)
|
33
|
-
ast (2.4.1)
|
34
|
-
builder (3.2.4)
|
35
|
-
codecov (0.2.9)
|
36
|
-
json
|
37
|
-
simplecov
|
38
|
-
coderay (1.1.3)
|
39
|
-
concurrent-ruby (1.1.7)
|
40
|
-
coveralls (0.7.1)
|
41
|
-
multi_json (~> 1.3)
|
42
|
-
rest-client
|
43
|
-
simplecov (>= 0.7)
|
44
|
-
term-ansicolor
|
45
|
-
thor
|
46
|
-
crack (0.4.3)
|
47
|
-
safe_yaml (~> 1.0.0)
|
48
|
-
crass (1.0.6)
|
49
|
-
diff-lcs (1.4.4)
|
50
|
-
docile (1.3.2)
|
51
|
-
domain_name (0.5.20190701)
|
52
|
-
unf (>= 0.0.5, < 1.0.0)
|
53
|
-
dotenv (2.7.6)
|
54
|
-
dotenv-rails (2.7.6)
|
55
|
-
dotenv (= 2.7.6)
|
56
|
-
railties (>= 3.2)
|
57
|
-
erubi (1.9.0)
|
58
|
-
faker (1.9.6)
|
59
|
-
i18n (>= 0.7)
|
60
|
-
ffi (1.13.1)
|
61
|
-
formatador (0.2.5)
|
62
|
-
fuubar (2.5.0)
|
63
|
-
rspec-core (~> 3.0)
|
64
|
-
ruby-progressbar (~> 1.4)
|
65
|
-
gem-release (0.7.4)
|
66
|
-
guard (2.16.2)
|
67
|
-
formatador (>= 0.2.4)
|
68
|
-
listen (>= 2.7, < 4.0)
|
69
|
-
lumberjack (>= 1.0.12, < 2.0)
|
70
|
-
nenv (~> 0.1)
|
71
|
-
notiffany (~> 0.0)
|
72
|
-
pry (>= 0.9.12)
|
73
|
-
shellany (~> 0.0)
|
74
|
-
thor (>= 0.18.1)
|
75
|
-
guard-compat (1.2.1)
|
76
|
-
guard-rspec (4.7.3)
|
77
|
-
guard (~> 2.1)
|
78
|
-
guard-compat (~> 1.1)
|
79
|
-
rspec (>= 2.99.0, < 4.0)
|
80
|
-
hashdiff (1.0.1)
|
81
|
-
http-cookie (1.0.3)
|
82
|
-
domain_name (~> 0.5)
|
83
|
-
i18n (1.8.5)
|
84
|
-
concurrent-ruby (~> 1.0)
|
85
|
-
json (2.3.1)
|
86
|
-
jwt (2.2.2)
|
87
|
-
listen (3.2.1)
|
88
|
-
rb-fsevent (~> 0.10, >= 0.10.3)
|
89
|
-
rb-inotify (~> 0.9, >= 0.9.10)
|
90
|
-
loofah (2.7.0)
|
91
|
-
crass (~> 1.0.2)
|
92
|
-
nokogiri (>= 1.5.9)
|
93
|
-
lumberjack (1.2.8)
|
94
|
-
method_source (0.8.2)
|
95
|
-
mime-types (3.3.1)
|
96
|
-
mime-types-data (~> 3.2015)
|
97
|
-
mime-types-data (3.2020.0512)
|
98
|
-
mini_portile2 (2.4.0)
|
99
|
-
minitest (5.14.2)
|
100
|
-
multi_json (1.15.0)
|
101
|
-
nenv (0.3.0)
|
102
|
-
netrc (0.11.0)
|
103
|
-
nokogiri (1.10.10)
|
104
|
-
mini_portile2 (~> 2.4.0)
|
105
|
-
notiffany (0.1.3)
|
106
|
-
nenv (~> 0.1)
|
107
|
-
shellany (~> 0.0)
|
108
|
-
parallel (1.19.2)
|
109
|
-
parser (2.7.1.4)
|
110
|
-
ast (~> 2.4.1)
|
111
|
-
pry (0.10.4)
|
112
|
-
coderay (~> 1.1.0)
|
113
|
-
method_source (~> 0.8.1)
|
114
|
-
slop (~> 3.4)
|
115
|
-
pry-nav (0.2.4)
|
116
|
-
pry (>= 0.9.10, < 0.11.0)
|
117
|
-
public_suffix (4.0.6)
|
118
|
-
rack (2.1.4)
|
119
|
-
rack-test (0.8.3)
|
120
|
-
rack (>= 1.0, < 3)
|
121
|
-
rails-dom-testing (2.0.3)
|
122
|
-
activesupport (>= 4.2.0)
|
123
|
-
nokogiri (>= 1.6)
|
124
|
-
rails-html-sanitizer (1.3.0)
|
125
|
-
loofah (~> 2.3)
|
126
|
-
railties (6.0.3.2)
|
127
|
-
actionpack (= 6.0.3.2)
|
128
|
-
activesupport (= 6.0.3.2)
|
129
|
-
method_source
|
130
|
-
rake (>= 0.8.7)
|
131
|
-
thor (>= 0.20.3, < 2.0)
|
132
|
-
rainbow (3.0.0)
|
133
|
-
rake (13.0.1)
|
134
|
-
rb-fsevent (0.10.4)
|
135
|
-
rb-inotify (0.10.1)
|
136
|
-
ffi (~> 1.0)
|
137
|
-
regexp_parser (1.7.1)
|
138
|
-
rest-client (2.0.2)
|
139
|
-
http-cookie (>= 1.0.2, < 2.0)
|
140
|
-
mime-types (>= 1.16, < 4.0)
|
141
|
-
netrc (~> 0.8)
|
142
|
-
rexml (3.2.4)
|
143
|
-
rspec (3.9.0)
|
144
|
-
rspec-core (~> 3.9.0)
|
145
|
-
rspec-expectations (~> 3.9.0)
|
146
|
-
rspec-mocks (~> 3.9.0)
|
147
|
-
rspec-core (3.9.2)
|
148
|
-
rspec-support (~> 3.9.3)
|
149
|
-
rspec-expectations (3.9.2)
|
150
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
151
|
-
rspec-support (~> 3.9.0)
|
152
|
-
rspec-mocks (3.9.1)
|
153
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
154
|
-
rspec-support (~> 3.9.0)
|
155
|
-
rspec-support (3.9.3)
|
156
|
-
rubocop (0.90.0)
|
157
|
-
parallel (~> 1.10)
|
158
|
-
parser (>= 2.7.1.1)
|
159
|
-
rainbow (>= 2.2.2, < 4.0)
|
160
|
-
regexp_parser (>= 1.7)
|
161
|
-
rexml
|
162
|
-
rubocop-ast (>= 0.3.0, < 1.0)
|
163
|
-
ruby-progressbar (~> 1.7)
|
164
|
-
unicode-display_width (>= 1.4.0, < 2.0)
|
165
|
-
rubocop-ast (0.3.0)
|
166
|
-
parser (>= 2.7.1.4)
|
167
|
-
rubocop-rails (2.7.1)
|
168
|
-
activesupport (>= 4.2.0)
|
169
|
-
rack (>= 1.1)
|
170
|
-
rubocop (>= 0.87.0)
|
171
|
-
ruby-progressbar (1.10.1)
|
172
|
-
safe_yaml (1.0.5)
|
173
|
-
shellany (0.0.1)
|
174
|
-
simplecov (0.19.0)
|
175
|
-
docile (~> 1.1)
|
176
|
-
simplecov-html (~> 0.11)
|
177
|
-
simplecov-html (0.12.2)
|
178
|
-
slop (3.6.0)
|
179
|
-
sync (0.5.0)
|
180
|
-
term-ansicolor (1.7.1)
|
181
|
-
tins (~> 1.0)
|
182
|
-
terminal-notifier-guard (1.7.0)
|
183
|
-
thor (1.0.1)
|
184
|
-
thread_safe (0.3.6)
|
185
|
-
tins (1.25.0)
|
186
|
-
sync
|
187
|
-
tzinfo (1.2.7)
|
188
|
-
thread_safe (~> 0.1)
|
189
|
-
unf (0.1.4)
|
190
|
-
unf_ext
|
191
|
-
unf_ext (0.0.7.7)
|
192
|
-
unicode-display_width (1.7.0)
|
193
|
-
vcr (6.0.0)
|
194
|
-
webmock (3.8.3)
|
195
|
-
addressable (>= 2.3.6)
|
196
|
-
crack (>= 0.3.2)
|
197
|
-
hashdiff (>= 0.4.0, < 2.0.0)
|
198
|
-
yard (0.9.25)
|
199
|
-
zache (0.12.0)
|
200
|
-
zeitwerk (2.4.0)
|
201
|
-
|
202
|
-
PLATFORMS
|
203
|
-
ruby
|
204
|
-
|
205
|
-
DEPENDENCIES
|
206
|
-
auth0!
|
207
|
-
codecov
|
208
|
-
coveralls
|
209
|
-
dotenv-rails (~> 2.0)
|
210
|
-
faker (~> 1.4)
|
211
|
-
fuubar (~> 2.0)
|
212
|
-
gem-release (~> 0.7)
|
213
|
-
guard-rspec (~> 4.5)
|
214
|
-
pry (~> 0.10)
|
215
|
-
pry-nav (~> 0.2.4)
|
216
|
-
rack (~> 2.1.2)
|
217
|
-
rack-test (~> 0.6)
|
218
|
-
rake (~> 13.0)
|
219
|
-
rspec (~> 3.1, >= 3.1.0)
|
220
|
-
rubocop
|
221
|
-
rubocop-rails
|
222
|
-
simplecov
|
223
|
-
terminal-notifier-guard
|
224
|
-
vcr
|
225
|
-
webmock
|
226
|
-
yard
|
227
|
-
|
228
|
-
BUNDLED WITH
|
229
|
-
1.17.3
|