auth0 5.0.0 → 5.0.1
Sign up to get free protection for your applications and to get access to all the features.
- 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 -0
- data/CHANGELOG.md +16 -0
- data/auth0.gemspec +3 -2
- data/lib/auth0/api/v2/users.rb +1 -1
- data/lib/auth0/version.rb +1 -1
- data/spec/integration/lib/auth0/api/v2/api_jobs_spec.rb +1 -1
- data/spec/integration/lib/auth0/api/v2/api_user_blocks_spec.rb +1 -1
- data/spec/lib/auth0/api/v2/users_spec.rb +1 -1
- data/spec/spec_helper.rb +6 -1
- metadata +24 -15
- data/.github/ISSUE_TEMPLATE.md +0 -39
- data/Gemfile.lock +0 -226
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cf18eaf917c7c8c5e3cccc4dad6a9824e50c921ea6b21612dc175ceb9dc447bc
|
4
|
+
data.tar.gz: 410e68beb033e30432bef49be72a04a14d65ecc63f5fd3dab784ca0bbf222f02
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eb8c767fc4a1539b9d778893bfd1eda7ccbd5ca1194dba5f79f5d84a5563c6038fdf66d640a0be6150cc913e0ce7479f9b434fe6552eec5459e058b0e3cbab8e
|
7
|
+
data.tar.gz: f8f03fd5d1e0d5358874fee49e72024942825e38a74799cc732af2977fcc5a582eac211dfbe021e22d8d55992460fbfbf4e48b66511180bb12c4c1ede415cf4b
|
data/.circleci/config.yml
CHANGED
@@ -1,8 +1,30 @@
|
|
1
1
|
version: 2.1
|
2
|
+
|
3
|
+
matrix_ruby_versions: &matrix_ruby_versions
|
4
|
+
matrix:
|
5
|
+
parameters:
|
6
|
+
ruby_version: ["2.5", "2.6", "2.7", "3.0"]
|
7
|
+
# Default version of ruby to use for lint and publishing
|
8
|
+
default_ruby_version: &default_ruby_version "2.7"
|
9
|
+
|
10
|
+
executors:
|
11
|
+
ruby-image:
|
12
|
+
parameters:
|
13
|
+
ruby_version:
|
14
|
+
type: string
|
15
|
+
default: *default_ruby_version
|
16
|
+
docker:
|
17
|
+
- image: circleci/ruby:<< parameters.ruby_version >>
|
18
|
+
|
2
19
|
jobs:
|
3
20
|
run-tests:
|
4
|
-
|
5
|
-
|
21
|
+
parameters:
|
22
|
+
ruby_version:
|
23
|
+
type: string
|
24
|
+
default: *default_ruby_version
|
25
|
+
executor:
|
26
|
+
name: ruby-image
|
27
|
+
ruby_version: << parameters.ruby_version >>
|
6
28
|
steps:
|
7
29
|
- checkout
|
8
30
|
- restore_cache:
|
@@ -20,4 +42,5 @@ jobs:
|
|
20
42
|
workflows:
|
21
43
|
tests:
|
22
44
|
jobs:
|
23
|
-
- run-tests
|
45
|
+
- run-tests:
|
46
|
+
<<: *matrix_ruby_versions
|
data/.github/CODEOWNERS
CHANGED
@@ -1 +1 @@
|
|
1
|
-
* @auth0/dx-sdks-
|
1
|
+
* @auth0/dx-sdks-engineer
|
@@ -0,0 +1,8 @@
|
|
1
|
+
blank_issues_enabled: false
|
2
|
+
contact_links:
|
3
|
+
- name: Auth0 Community
|
4
|
+
url: https://community.auth0.com/c/sdks/5
|
5
|
+
about: Discuss this SDK in the Auth0 Community forums
|
6
|
+
- name: SDK API Documentation
|
7
|
+
url: https://www.rubydoc.info/gems/auth0
|
8
|
+
about: Read the API documentation for this SDK
|
@@ -0,0 +1,39 @@
|
|
1
|
+
---
|
2
|
+
name: Feature request
|
3
|
+
about: Suggest an idea or a feature for this project
|
4
|
+
title: ''
|
5
|
+
labels: feature request
|
6
|
+
assignees: ''
|
7
|
+
---
|
8
|
+
|
9
|
+
<!--
|
10
|
+
**Please do not report security vulnerabilities here**. The Responsible Disclosure Program (https://auth0.com/whitehat) details the procedure for disclosing security issues.
|
11
|
+
|
12
|
+
Thank you in advance for helping us to improve this library! Your attention to detail here is greatly appreciated and will help us respond as quickly as possible. For general support or usage questions, use the Auth0 Community (https://community.auth0.com/) or Auth0 Support (https://support.auth0.com/). Finally, to avoid duplicates, please search existing Issues before submitting one here.
|
13
|
+
|
14
|
+
By submitting an Issue to this repository, you agree to the terms within the Auth0 Code of Conduct (https://github.com/auth0/open-source-template/blob/master/CODE-OF-CONDUCT.md).
|
15
|
+
-->
|
16
|
+
|
17
|
+
### Describe the problem you'd like to have solved
|
18
|
+
|
19
|
+
<!--
|
20
|
+
> A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
|
21
|
+
-->
|
22
|
+
|
23
|
+
### Describe the ideal solution
|
24
|
+
|
25
|
+
<!--
|
26
|
+
> A clear and concise description of what you want to happen.
|
27
|
+
-->
|
28
|
+
|
29
|
+
## Alternatives and current work-arounds
|
30
|
+
|
31
|
+
<!--
|
32
|
+
> A clear and concise description of any alternatives you've considered or any work-arounds that are currently in place.
|
33
|
+
-->
|
34
|
+
|
35
|
+
### Additional information, if any
|
36
|
+
|
37
|
+
<!--
|
38
|
+
> Add any other context or screenshots about the feature request here.
|
39
|
+
-->
|
@@ -0,0 +1,55 @@
|
|
1
|
+
---
|
2
|
+
name: Report a bug
|
3
|
+
about: Have you found a bug or issue? Create a bug report for this SDK
|
4
|
+
title: ''
|
5
|
+
labels: bug report
|
6
|
+
assignees: ''
|
7
|
+
---
|
8
|
+
|
9
|
+
<!--
|
10
|
+
**Please do not report security vulnerabilities here**. The Responsible Disclosure Program (https://auth0.com/whitehat) details the procedure for disclosing security issues.
|
11
|
+
|
12
|
+
Thank you in advance for helping us to improve this library! 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. For general support or usage questions, use the Auth0 Community (https://community.auth0.com/) or Auth0 Support (https://support.auth0.com/). Finally, to avoid duplicates, please search existing Issues before submitting one here.
|
13
|
+
|
14
|
+
By submitting an Issue to this repository, you agree to the terms within the Auth0 Code of Conduct (https://github.com/auth0/open-source-template/blob/master/CODE-OF-CONDUCT.md).
|
15
|
+
-->
|
16
|
+
|
17
|
+
### Describe the problem
|
18
|
+
|
19
|
+
<!--
|
20
|
+
> Provide a clear and concise description of the issue
|
21
|
+
-->
|
22
|
+
|
23
|
+
### What was the expected behavior?
|
24
|
+
|
25
|
+
<!--
|
26
|
+
> Tell us about the behavior you expected to see
|
27
|
+
-->
|
28
|
+
|
29
|
+
### Reproduction
|
30
|
+
<!--
|
31
|
+
> Detail the steps taken to reproduce this error, and whether this issue can be reproduced consistently or if it is intermittent.
|
32
|
+
> **Note**: If clear, reproducable steps or the smallest sample app demonstrating misbehavior cannot be provided, we may not be able to follow up on this bug report.
|
33
|
+
|
34
|
+
> Where possible, please include:
|
35
|
+
>
|
36
|
+
> - The smallest possible sample app that reproduces the undesirable behavior
|
37
|
+
> - Log files (redact/remove sensitive information)
|
38
|
+
> - Application settings (redact/remove sensitive information)
|
39
|
+
> - Screenshots
|
40
|
+
-->
|
41
|
+
|
42
|
+
- Step 1..
|
43
|
+
- Step 2..
|
44
|
+
- ...
|
45
|
+
|
46
|
+
### Environment
|
47
|
+
|
48
|
+
<!--
|
49
|
+
> Please provide the following:
|
50
|
+
-->
|
51
|
+
|
52
|
+
- **Version of this library used:**
|
53
|
+
- **Which framework are you using, if applicable:**
|
54
|
+
- **Other modules/plugins/libraries that might be involved:**
|
55
|
+
- **Any other relevant information you think would be useful:**
|
data/.gitignore
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
+
## [v5.0.1](https://github.com/auth0/ruby-auth0/tree/v5.0.1) (2021-02-02)
|
4
|
+
|
5
|
+
[Full Changelog](https://github.com/auth0/ruby-auth0/compare/v5.0.0..v5.0.1)
|
6
|
+
|
7
|
+
**Added**
|
8
|
+
|
9
|
+
- Add test support for Ruby 2.6 and 2.7 and 3.0 [\#256](https://github.com/auth0/ruby-auth0/pull/256) ([fursich](https://github.com/fursich))
|
10
|
+
|
11
|
+
**Fixed**
|
12
|
+
|
13
|
+
- Fixes recovery-code-regeneration URL [\#257](https://github.com/auth0/ruby-auth0/pull/257) ([epintos](https://github.com/apps/epintos))
|
14
|
+
|
15
|
+
**Security**
|
16
|
+
|
17
|
+
- Bumps nokogiri from 1.10.10 to 1.11.1 [\#258](https://github.com/auth0/ruby-auth0/pull/258) ([dependabot](https://github.com/apps/dependabot))
|
18
|
+
|
3
19
|
## [v5.0.0](https://github.com/auth0/ruby-auth0/tree/v5.0.0) (2020-10-22)
|
4
20
|
|
5
21
|
This release addresses some long standing issues with the library that could only be addressed in a major. We have also removed Api/v1 endpoints and other deprecated methods.
|
data/auth0.gemspec
CHANGED
@@ -21,17 +21,18 @@ Gem::Specification.new do |s|
|
|
21
21
|
s.add_runtime_dependency 'zache', '~> 0.12.0'
|
22
22
|
s.add_runtime_dependency 'addressable', '~> 2.7.0'
|
23
23
|
|
24
|
+
s.add_development_dependency 'bundler'
|
24
25
|
s.add_development_dependency 'rake', '~> 13.0'
|
25
26
|
s.add_development_dependency 'fuubar', '~> 2.0'
|
26
27
|
s.add_development_dependency 'guard-rspec', '~> 4.5' unless ENV['CIRCLECI']
|
27
28
|
s.add_development_dependency 'dotenv-rails', '~> 2.0'
|
28
29
|
s.add_development_dependency 'pry', '~> 0.10'
|
29
30
|
s.add_development_dependency 'pry-nav', '~> 0.2.4'
|
30
|
-
s.add_development_dependency 'rspec', '~> 3.
|
31
|
+
s.add_development_dependency 'rspec', '~> 3.5'
|
31
32
|
s.add_development_dependency 'rack-test', '~> 0.6'
|
32
33
|
s.add_development_dependency 'rack', '~> 2.1.2'
|
33
34
|
s.add_development_dependency 'simplecov', '~> 0.9'
|
34
|
-
s.add_development_dependency 'faker', '~>
|
35
|
+
s.add_development_dependency 'faker', '~> 2.0'
|
35
36
|
s.add_development_dependency 'gem-release', '~> 0.7'
|
36
37
|
s.license = 'MIT'
|
37
38
|
end
|
data/lib/auth0/api/v2/users.rb
CHANGED
@@ -296,7 +296,7 @@ module Auth0
|
|
296
296
|
# @param user_id [string] The user_id of the recovery codes to regenerate.
|
297
297
|
def generate_recovery_code(user_id)
|
298
298
|
raise Auth0::MissingUserId, 'Must supply a valid user_id' if user_id.to_s.empty?
|
299
|
-
post "#{users_path}/#{user_id}/recovery-code-
|
299
|
+
post "#{users_path}/#{user_id}/recovery-code-regeneration"
|
300
300
|
end
|
301
301
|
|
302
302
|
# Invalidate all remembered browsers for all authentication factors for a specific user.
|
data/lib/auth0/version.rb
CHANGED
@@ -4,7 +4,7 @@ describe Auth0::Api::V2::Jobs do
|
|
4
4
|
|
5
5
|
let(:client) { Auth0Client.new(v2_creds) }
|
6
6
|
let(:username) { Faker::Internet.user_name }
|
7
|
-
let(:email) { "#{entity_suffix}#{Faker::Internet.safe_email(username)}" }
|
7
|
+
let(:email) { "#{entity_suffix}#{Faker::Internet.safe_email(name: username)}" }
|
8
8
|
let(:connection_id) do
|
9
9
|
VCR.use_cassette('Auth0_Api_V2_Jobs/search_for_connection_id') do
|
10
10
|
client.connections.find do |connection|
|
@@ -6,7 +6,7 @@ describe Auth0::Api::V2::UserBlocks do
|
|
6
6
|
before(:all) do
|
7
7
|
@client = Auth0Client.new(v2_creds)
|
8
8
|
username = Faker::Internet.user_name
|
9
|
-
@email = "#{entity_suffix}#{Faker::Internet.safe_email(username)}"
|
9
|
+
@email = "#{entity_suffix}#{Faker::Internet.safe_email(name: username)}"
|
10
10
|
password = Faker::Internet.password
|
11
11
|
@user = client.create_user(username, 'email' => email,
|
12
12
|
'password' => password,
|
@@ -524,7 +524,7 @@ describe Auth0::Api::V2::Users do
|
|
524
524
|
end
|
525
525
|
|
526
526
|
it 'is expected to get generate a recovery code' do
|
527
|
-
expect(@instance).to receive(:post).with('/api/v2/users/USER_ID/recovery-code-
|
527
|
+
expect(@instance).to receive(:post).with('/api/v2/users/USER_ID/recovery-code-regeneration')
|
528
528
|
expect do
|
529
529
|
@instance.generate_recovery_code('USER_ID')
|
530
530
|
end.not_to raise_error
|
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}"
|
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: 5.0.
|
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
|
@@ -69,6 +69,20 @@ dependencies:
|
|
69
69
|
- - "~>"
|
70
70
|
- !ruby/object:Gem::Version
|
71
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'
|
72
86
|
- !ruby/object:Gem::Dependency
|
73
87
|
name: rake
|
74
88
|
requirement: !ruby/object:Gem::Requirement
|
@@ -159,20 +173,14 @@ dependencies:
|
|
159
173
|
requirements:
|
160
174
|
- - "~>"
|
161
175
|
- !ruby/object:Gem::Version
|
162
|
-
version: '3.
|
163
|
-
- - ">="
|
164
|
-
- !ruby/object:Gem::Version
|
165
|
-
version: 3.1.0
|
176
|
+
version: '3.5'
|
166
177
|
type: :development
|
167
178
|
prerelease: false
|
168
179
|
version_requirements: !ruby/object:Gem::Requirement
|
169
180
|
requirements:
|
170
181
|
- - "~>"
|
171
182
|
- !ruby/object:Gem::Version
|
172
|
-
version: '3.
|
173
|
-
- - ">="
|
174
|
-
- !ruby/object:Gem::Version
|
175
|
-
version: 3.1.0
|
183
|
+
version: '3.5'
|
176
184
|
- !ruby/object:Gem::Dependency
|
177
185
|
name: rack-test
|
178
186
|
requirement: !ruby/object:Gem::Requirement
|
@@ -221,14 +229,14 @@ dependencies:
|
|
221
229
|
requirements:
|
222
230
|
- - "~>"
|
223
231
|
- !ruby/object:Gem::Version
|
224
|
-
version: '
|
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: '
|
239
|
+
version: '2.0'
|
232
240
|
- !ruby/object:Gem::Dependency
|
233
241
|
name: gem-release
|
234
242
|
requirement: !ruby/object:Gem::Requirement
|
@@ -255,7 +263,9 @@ 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"
|
@@ -272,7 +282,6 @@ files:
|
|
272
282
|
- DEPLOYMENT.md
|
273
283
|
- Dockerfile
|
274
284
|
- Gemfile
|
275
|
-
- Gemfile.lock
|
276
285
|
- Guardfile
|
277
286
|
- LICENSE
|
278
287
|
- README.md
|
@@ -623,7 +632,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
623
632
|
- !ruby/object:Gem::Version
|
624
633
|
version: '0'
|
625
634
|
requirements: []
|
626
|
-
rubygems_version: 3.
|
635
|
+
rubygems_version: 3.0.9
|
627
636
|
signing_key:
|
628
637
|
specification_version: 4
|
629
638
|
summary: Auth0 API Client
|
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,226 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: .
|
3
|
-
specs:
|
4
|
-
auth0 (5.0.0)
|
5
|
-
addressable (~> 2.7.0)
|
6
|
-
jwt (~> 2.2.0)
|
7
|
-
rest-client (~> 2.0.0)
|
8
|
-
zache (~> 0.12.0)
|
9
|
-
|
10
|
-
GEM
|
11
|
-
remote: https://rubygems.org/
|
12
|
-
specs:
|
13
|
-
actionpack (6.0.3.4)
|
14
|
-
actionview (= 6.0.3.4)
|
15
|
-
activesupport (= 6.0.3.4)
|
16
|
-
rack (~> 2.0, >= 2.0.8)
|
17
|
-
rack-test (>= 0.6.3)
|
18
|
-
rails-dom-testing (~> 2.0)
|
19
|
-
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
20
|
-
actionview (6.0.3.4)
|
21
|
-
activesupport (= 6.0.3.4)
|
22
|
-
builder (~> 3.1)
|
23
|
-
erubi (~> 1.4)
|
24
|
-
rails-dom-testing (~> 2.0)
|
25
|
-
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
26
|
-
activesupport (6.0.3.4)
|
27
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
28
|
-
i18n (>= 0.7, < 2)
|
29
|
-
minitest (~> 5.1)
|
30
|
-
tzinfo (~> 1.1)
|
31
|
-
zeitwerk (~> 2.2, >= 2.2.2)
|
32
|
-
addressable (2.7.0)
|
33
|
-
public_suffix (>= 2.0.2, < 5.0)
|
34
|
-
ast (2.4.1)
|
35
|
-
builder (3.2.4)
|
36
|
-
codecov (0.2.12)
|
37
|
-
json
|
38
|
-
simplecov
|
39
|
-
coderay (1.1.3)
|
40
|
-
concurrent-ruby (1.1.7)
|
41
|
-
coveralls (0.7.1)
|
42
|
-
multi_json (~> 1.3)
|
43
|
-
rest-client
|
44
|
-
simplecov (>= 0.7)
|
45
|
-
term-ansicolor
|
46
|
-
thor
|
47
|
-
crack (0.4.4)
|
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.2.0)
|
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.4)
|
127
|
-
actionpack (= 6.0.3.4)
|
128
|
-
activesupport (= 6.0.3.4)
|
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.8.2)
|
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.3)
|
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 (1.0.0)
|
157
|
-
parallel (~> 1.10)
|
158
|
-
parser (>= 2.7.1.5)
|
159
|
-
rainbow (>= 2.2.2, < 4.0)
|
160
|
-
regexp_parser (>= 1.8)
|
161
|
-
rexml
|
162
|
-
rubocop-ast (>= 0.6.0)
|
163
|
-
ruby-progressbar (~> 1.7)
|
164
|
-
unicode-display_width (>= 1.4.0, < 2.0)
|
165
|
-
rubocop-ast (1.0.0)
|
166
|
-
parser (>= 2.7.1.5)
|
167
|
-
rubocop-rails (2.8.1)
|
168
|
-
activesupport (>= 4.2.0)
|
169
|
-
rack (>= 1.1)
|
170
|
-
rubocop (>= 0.87.0)
|
171
|
-
ruby-progressbar (1.10.1)
|
172
|
-
shellany (0.0.1)
|
173
|
-
simplecov (0.19.0)
|
174
|
-
docile (~> 1.1)
|
175
|
-
simplecov-html (~> 0.11)
|
176
|
-
simplecov-html (0.12.3)
|
177
|
-
slop (3.6.0)
|
178
|
-
sync (0.5.0)
|
179
|
-
term-ansicolor (1.7.1)
|
180
|
-
tins (~> 1.0)
|
181
|
-
terminal-notifier-guard (1.7.0)
|
182
|
-
thor (1.0.1)
|
183
|
-
thread_safe (0.3.6)
|
184
|
-
tins (1.26.0)
|
185
|
-
sync
|
186
|
-
tzinfo (1.2.7)
|
187
|
-
thread_safe (~> 0.1)
|
188
|
-
unf (0.1.4)
|
189
|
-
unf_ext
|
190
|
-
unf_ext (0.0.7.7)
|
191
|
-
unicode-display_width (1.7.0)
|
192
|
-
vcr (6.0.0)
|
193
|
-
webmock (3.9.3)
|
194
|
-
addressable (>= 2.3.6)
|
195
|
-
crack (>= 0.3.2)
|
196
|
-
hashdiff (>= 0.4.0, < 2.0.0)
|
197
|
-
zache (0.12.0)
|
198
|
-
zeitwerk (2.4.0)
|
199
|
-
|
200
|
-
PLATFORMS
|
201
|
-
ruby
|
202
|
-
|
203
|
-
DEPENDENCIES
|
204
|
-
auth0!
|
205
|
-
codecov
|
206
|
-
coveralls
|
207
|
-
dotenv-rails (~> 2.0)
|
208
|
-
faker (~> 1.4)
|
209
|
-
fuubar (~> 2.0)
|
210
|
-
gem-release (~> 0.7)
|
211
|
-
guard-rspec (~> 4.5)
|
212
|
-
pry (~> 0.10)
|
213
|
-
pry-nav (~> 0.2.4)
|
214
|
-
rack (~> 2.1.2)
|
215
|
-
rack-test (~> 0.6)
|
216
|
-
rake (~> 13.0)
|
217
|
-
rspec (~> 3.1, >= 3.1.0)
|
218
|
-
rubocop
|
219
|
-
rubocop-rails
|
220
|
-
simplecov
|
221
|
-
terminal-notifier-guard
|
222
|
-
vcr
|
223
|
-
webmock
|
224
|
-
|
225
|
-
BUNDLED WITH
|
226
|
-
1.17.3
|