auth0 4.11.0 → 4.12.0
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/CHANGELOG.md +13 -0
- data/Gemfile.lock +37 -30
- data/README.md +45 -0
- data/auth0.gemspec +2 -0
- data/lib/auth0.rb +1 -0
- data/lib/auth0/algorithm.rb +5 -0
- data/lib/auth0/api/authentication_endpoints.rb +34 -0
- data/lib/auth0/exception.rb +2 -0
- data/lib/auth0/mixins/validation.rb +315 -0
- data/lib/auth0/version.rb +1 -1
- data/spec/lib/auth0/api/authentication_endpoints_spec.rb +35 -10
- data/spec/lib/auth0/mixins/validation_spec.rb +474 -0
- data/spec/spec_helper.rb +1 -0
- metadata +33 -2
data/spec/spec_helper.rb
CHANGED
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.
|
|
4
|
+
version: 4.12.0
|
|
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: 2020-
|
|
14
|
+
date: 2020-06-11 00:00:00.000000000 Z
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|
|
17
17
|
name: rest-client
|
|
@@ -27,6 +27,34 @@ dependencies:
|
|
|
27
27
|
- - "~>"
|
|
28
28
|
- !ruby/object:Gem::Version
|
|
29
29
|
version: 2.0.0
|
|
30
|
+
- !ruby/object:Gem::Dependency
|
|
31
|
+
name: jwt
|
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
|
33
|
+
requirements:
|
|
34
|
+
- - "~>"
|
|
35
|
+
- !ruby/object:Gem::Version
|
|
36
|
+
version: 2.2.0
|
|
37
|
+
type: :runtime
|
|
38
|
+
prerelease: false
|
|
39
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
40
|
+
requirements:
|
|
41
|
+
- - "~>"
|
|
42
|
+
- !ruby/object:Gem::Version
|
|
43
|
+
version: 2.2.0
|
|
44
|
+
- !ruby/object:Gem::Dependency
|
|
45
|
+
name: zache
|
|
46
|
+
requirement: !ruby/object:Gem::Requirement
|
|
47
|
+
requirements:
|
|
48
|
+
- - "~>"
|
|
49
|
+
- !ruby/object:Gem::Version
|
|
50
|
+
version: 0.12.0
|
|
51
|
+
type: :runtime
|
|
52
|
+
prerelease: false
|
|
53
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
54
|
+
requirements:
|
|
55
|
+
- - "~>"
|
|
56
|
+
- !ruby/object:Gem::Version
|
|
57
|
+
version: 0.12.0
|
|
30
58
|
- !ruby/object:Gem::Dependency
|
|
31
59
|
name: rake
|
|
32
60
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -322,6 +350,7 @@ files:
|
|
|
322
350
|
- examples/ruby-on-rails-api/test/secured_ping_controller_test.rb
|
|
323
351
|
- examples/ruby-on-rails-api/test/test_helper.rb
|
|
324
352
|
- lib/auth0.rb
|
|
353
|
+
- lib/auth0/algorithm.rb
|
|
325
354
|
- lib/auth0/api/authentication_endpoints.rb
|
|
326
355
|
- lib/auth0/api/v1.rb
|
|
327
356
|
- lib/auth0/api/v1/clients.rb
|
|
@@ -572,6 +601,7 @@ files:
|
|
|
572
601
|
- spec/lib/auth0/client_spec.rb
|
|
573
602
|
- spec/lib/auth0/mixins/httpproxy_spec.rb
|
|
574
603
|
- spec/lib/auth0/mixins/initializer_spec.rb
|
|
604
|
+
- spec/lib/auth0/mixins/validation_spec.rb
|
|
575
605
|
- spec/spec_helper.rb
|
|
576
606
|
- spec/support/credentials.rb
|
|
577
607
|
- spec/support/dummy_class.rb
|
|
@@ -813,6 +843,7 @@ test_files:
|
|
|
813
843
|
- spec/lib/auth0/client_spec.rb
|
|
814
844
|
- spec/lib/auth0/mixins/httpproxy_spec.rb
|
|
815
845
|
- spec/lib/auth0/mixins/initializer_spec.rb
|
|
846
|
+
- spec/lib/auth0/mixins/validation_spec.rb
|
|
816
847
|
- spec/spec_helper.rb
|
|
817
848
|
- spec/support/credentials.rb
|
|
818
849
|
- spec/support/dummy_class.rb
|