g5_authentication_client 1.0.0.pre.1 → 1.0.0.pre.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/Gemfile +3 -1
- data/Rakefile +3 -1
- data/lib/g5_authentication_client/auth_token_helper.rb +2 -0
- data/lib/g5_authentication_client/client.rb +2 -0
- data/lib/g5_authentication_client/configuration.rb +2 -0
- data/lib/g5_authentication_client/error.rb +2 -1
- data/lib/g5_authentication_client/role.rb +2 -1
- data/lib/g5_authentication_client/token_info.rb +2 -0
- data/lib/g5_authentication_client/user.rb +2 -0
- data/lib/g5_authentication_client/version.rb +1 -1
- data/lib/g5_authentication_client.rb +2 -0
- data/spec/g5_authentication_client/auth_token_helper_spec.rb +3 -1
- data/spec/g5_authentication_client/client_spec.rb +2 -0
- data/spec/g5_authentication_client/configuration_spec.rb +2 -0
- data/spec/g5_authentication_client/role_spec.rb +1 -1
- data/spec/g5_authentication_client/token_info_spec.rb +2 -0
- data/spec/g5_authentication_client_spec.rb +2 -0
- data/spec/support/module_configured_attribute.rb +2 -0
- data/spec/support/oauth_protected_resource.rb +2 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e468551ead4c5635ac68c7bdf2641460e6239611
|
4
|
+
data.tar.gz: df7896686c5b47a340b2fe9b41c4ee54bfae7303
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 467e8456f1f216d10b9f73403c77e58331a072db5c0f0451d25a722b1b10c88a41c598ad1f306acfcbd3baadf54ea4ad23bae990554b5f7ded5fbf14c16f73ef
|
7
|
+
data.tar.gz: ba3302d4b55eb2d35c1cb71ba177bacc322f815bbe38dd9498e5bd5518de296dc51a91beeaa5c56c229456c21c651cad263ea2d1ef2d9e008ba1193daf4a137e
|
data/CHANGELOG.md
CHANGED
data/Gemfile
CHANGED
data/Rakefile
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'modelish'
|
2
4
|
|
3
5
|
module G5AuthenticationClient
|
@@ -26,6 +28,5 @@ module G5AuthenticationClient
|
|
26
28
|
validate!
|
27
29
|
raise ArgumentError.new("URN required when type != '#{GLOBAL}'") if urn.nil? && type != GLOBAL
|
28
30
|
end
|
29
|
-
|
30
31
|
end
|
31
32
|
end
|