descope 1.0.6 → 1.1.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/.github/workflows/ci.yaml +51 -12
- data/.github/workflows/publish-gem.yaml +6 -26
- data/.github/workflows/release-please.yaml +36 -0
- data/.gitignore +5 -2
- data/.release-please-manifest.json +1 -1
- data/.ruby-version +1 -1
- data/CHANGELOG.md +21 -0
- data/Gemfile +8 -7
- data/Gemfile.lock +70 -56
- data/README.md +170 -51
- data/examples/ruby-on-rails-api/descope/Gemfile +8 -8
- data/examples/ruby-on-rails-api/descope/Gemfile.lock +1 -1
- data/examples/ruby-on-rails-api/descope/package-lock.json +203 -141
- data/examples/ruby-on-rails-api/descope/package.json +1 -1
- data/examples/ruby-on-rails-api/descope/yarn.lock +185 -87
- data/lib/descope/api/v1/auth/enchantedlink.rb +3 -1
- data/lib/descope/api/v1/auth/magiclink.rb +3 -1
- data/lib/descope/api/v1/auth/otp.rb +3 -1
- data/lib/descope/api/v1/auth/password.rb +6 -2
- data/lib/descope/api/v1/auth/totp.rb +3 -1
- data/lib/descope/api/v1/auth.rb +47 -12
- data/lib/descope/api/v1/management/common.rb +20 -5
- data/lib/descope/api/v1/management/sso_application.rb +236 -0
- data/lib/descope/api/v1/management/sso_settings.rb +2 -24
- data/lib/descope/api/v1/management/user.rb +151 -13
- data/lib/descope/api/v1/management.rb +2 -0
- data/lib/descope/api/v1/session.rb +37 -4
- data/lib/descope/mixins/common.rb +1 -0
- data/lib/descope/mixins/http.rb +60 -9
- data/lib/descope/mixins/initializer.rb +5 -2
- data/lib/descope/mixins/logging.rb +12 -4
- data/lib/descope/version.rb +1 -1
- data/spec/descope/api/v1/auth_spec.rb +29 -0
- data/spec/descope/api/v1/auth_token_extraction_spec.rb +126 -0
- data/spec/descope/api/v1/session_refresh_spec.rb +98 -0
- data/spec/factories/user.rb +1 -1
- data/spec/integration/lib.descope/api/v1/auth/enchantedlink_spec.rb +20 -22
- data/spec/integration/lib.descope/api/v1/auth/magiclink_spec.rb +6 -2
- data/spec/integration/lib.descope/api/v1/auth/otp_spec.rb +6 -2
- data/spec/integration/lib.descope/api/v1/auth/session_spec.rb +68 -0
- data/spec/integration/lib.descope/api/v1/auth/totp_spec.rb +6 -2
- data/spec/integration/lib.descope/api/v1/management/access_key_spec.rb +12 -1
- data/spec/integration/lib.descope/api/v1/management/audit_spec.rb +5 -3
- data/spec/integration/lib.descope/api/v1/management/authz_spec.rb +28 -5
- data/spec/integration/lib.descope/api/v1/management/flow_spec.rb +3 -1
- data/spec/integration/lib.descope/api/v1/management/permissions_spec.rb +22 -2
- data/spec/integration/lib.descope/api/v1/management/project_spec.rb +18 -2
- data/spec/integration/lib.descope/api/v1/management/roles_spec.rb +116 -36
- data/spec/integration/lib.descope/api/v1/management/user_spec.rb +74 -8
- data/spec/lib.descope/api/v1/auth/enchantedlink_spec.rb +11 -2
- data/spec/lib.descope/api/v1/auth/password_spec.rb +10 -1
- data/spec/lib.descope/api/v1/auth_spec.rb +167 -5
- data/spec/lib.descope/api/v1/cookie_domain_fix_integration_spec.rb +245 -0
- data/spec/lib.descope/api/v1/management/sso_application_spec.rb +217 -0
- data/spec/lib.descope/api/v1/management/sso_settings_spec.rb +2 -2
- data/spec/lib.descope/api/v1/management/user_spec.rb +134 -46
- data/spec/lib.descope/api/v1/session_spec.rb +119 -6
- data/spec/lib.descope/mixins/http_spec.rb +229 -0
- data/spec/support/client_config.rb +0 -1
- data/spec/support/utils.rb +21 -0
- metadata +14 -8
metadata
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: descope
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0
|
|
4
|
+
version: 1.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Descope Inc.
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: bin
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: addressable
|
|
@@ -88,6 +87,7 @@ extra_rdoc_files: []
|
|
|
88
87
|
files:
|
|
89
88
|
- ".github/workflows/ci.yaml"
|
|
90
89
|
- ".github/workflows/publish-gem.yaml"
|
|
90
|
+
- ".github/workflows/release-please.yaml"
|
|
91
91
|
- ".gitignore"
|
|
92
92
|
- ".release-please-manifest.json"
|
|
93
93
|
- ".rubocop.yml"
|
|
@@ -277,6 +277,7 @@ files:
|
|
|
277
277
|
- lib/descope/api/v1/management/project.rb
|
|
278
278
|
- lib/descope/api/v1/management/role.rb
|
|
279
279
|
- lib/descope/api/v1/management/scim.rb
|
|
280
|
+
- lib/descope/api/v1/management/sso_application.rb
|
|
280
281
|
- lib/descope/api/v1/management/sso_settings.rb
|
|
281
282
|
- lib/descope/api/v1/management/tenant.rb
|
|
282
283
|
- lib/descope/api/v1/management/user.rb
|
|
@@ -294,11 +295,15 @@ files:
|
|
|
294
295
|
- lib/descope_client.rb
|
|
295
296
|
- release-please-config.json
|
|
296
297
|
- renovate.json
|
|
298
|
+
- spec/descope/api/v1/auth_spec.rb
|
|
299
|
+
- spec/descope/api/v1/auth_token_extraction_spec.rb
|
|
300
|
+
- spec/descope/api/v1/session_refresh_spec.rb
|
|
297
301
|
- spec/factories/user.rb
|
|
298
302
|
- spec/integration/lib.descope/api/v1/auth/enchantedlink_spec.rb
|
|
299
303
|
- spec/integration/lib.descope/api/v1/auth/magiclink_spec.rb
|
|
300
304
|
- spec/integration/lib.descope/api/v1/auth/otp_spec.rb
|
|
301
305
|
- spec/integration/lib.descope/api/v1/auth/password_spec.rb
|
|
306
|
+
- spec/integration/lib.descope/api/v1/auth/session_spec.rb
|
|
302
307
|
- spec/integration/lib.descope/api/v1/auth/totp_spec.rb
|
|
303
308
|
- spec/integration/lib.descope/api/v1/management/access_key_spec.rb
|
|
304
309
|
- spec/integration/lib.descope/api/v1/management/audit_spec.rb
|
|
@@ -316,6 +321,7 @@ files:
|
|
|
316
321
|
- spec/lib.descope/api/v1/auth/saml_spec.rb
|
|
317
322
|
- spec/lib.descope/api/v1/auth/totp_spec.rb
|
|
318
323
|
- spec/lib.descope/api/v1/auth_spec.rb
|
|
324
|
+
- spec/lib.descope/api/v1/cookie_domain_fix_integration_spec.rb
|
|
319
325
|
- spec/lib.descope/api/v1/management/access_key_spec.rb
|
|
320
326
|
- spec/lib.descope/api/v1/management/audit_spec.rb
|
|
321
327
|
- spec/lib.descope/api/v1/management/authz_spec.rb
|
|
@@ -325,11 +331,13 @@ files:
|
|
|
325
331
|
- spec/lib.descope/api/v1/management/project_spec.rb
|
|
326
332
|
- spec/lib.descope/api/v1/management/role_spec.rb
|
|
327
333
|
- spec/lib.descope/api/v1/management/scim_spec.rb
|
|
334
|
+
- spec/lib.descope/api/v1/management/sso_application_spec.rb
|
|
328
335
|
- spec/lib.descope/api/v1/management/sso_settings_spec.rb
|
|
329
336
|
- spec/lib.descope/api/v1/management/tenant_spec.rb
|
|
330
337
|
- spec/lib.descope/api/v1/management/user_spec.rb
|
|
331
338
|
- spec/lib.descope/api/v1/session_spec.rb
|
|
332
339
|
- spec/lib.descope/client_spec.rb
|
|
340
|
+
- spec/lib.descope/mixins/http_spec.rb
|
|
333
341
|
- spec/spec_helper.rb
|
|
334
342
|
- spec/support/client_config.rb
|
|
335
343
|
- spec/support/dummy_class.rb
|
|
@@ -339,10 +347,9 @@ licenses:
|
|
|
339
347
|
- MIT
|
|
340
348
|
metadata:
|
|
341
349
|
bug_tracker_uri: https://github.com/descope/descope-ruby-sdk/issues
|
|
342
|
-
changelog_uri: https://github.com/descope/descope-ruby-sdk/releases/tag/1.0
|
|
350
|
+
changelog_uri: https://github.com/descope/descope-ruby-sdk/releases/tag/1.1.0
|
|
343
351
|
documentation_uri: https://docs.descope.com
|
|
344
|
-
source_code_uri: https://github.com/descope/descope-ruby-sdk/tree/1.0
|
|
345
|
-
post_install_message:
|
|
352
|
+
source_code_uri: https://github.com/descope/descope-ruby-sdk/tree/1.1.0
|
|
346
353
|
rdoc_options: []
|
|
347
354
|
require_paths:
|
|
348
355
|
- lib
|
|
@@ -357,8 +364,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
357
364
|
- !ruby/object:Gem::Version
|
|
358
365
|
version: '3.5'
|
|
359
366
|
requirements: []
|
|
360
|
-
rubygems_version: 3.
|
|
361
|
-
signing_key:
|
|
367
|
+
rubygems_version: 3.6.9
|
|
362
368
|
specification_version: 4
|
|
363
369
|
summary: Descope Ruby API Client
|
|
364
370
|
test_files: []
|