colorado-booth-sdk 1.0.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 +7 -0
- data/LICENSE +28 -0
- data/README.md +202 -0
- data/bin/console +15 -0
- data/lib/multi_auth_sample/api_helper.rb +10 -0
- data/lib/multi_auth_sample/client.rb +118 -0
- data/lib/multi_auth_sample/configuration.rb +262 -0
- data/lib/multi_auth_sample/controllers/authentication_controller.rb +149 -0
- data/lib/multi_auth_sample/controllers/base_controller.rb +60 -0
- data/lib/multi_auth_sample/controllers/o_auth_authorization_controller.rb +188 -0
- data/lib/multi_auth_sample/exceptions/api_exception.rb +21 -0
- data/lib/multi_auth_sample/exceptions/o_auth_provider_exception.rb +64 -0
- data/lib/multi_auth_sample/http/auth/api_header.rb +59 -0
- data/lib/multi_auth_sample/http/auth/api_key.rb +59 -0
- data/lib/multi_auth_sample/http/auth/basic_auth.rb +62 -0
- data/lib/multi_auth_sample/http/auth/custom_auth.rb +40 -0
- data/lib/multi_auth_sample/http/auth/o_auth_acg.rb +163 -0
- data/lib/multi_auth_sample/http/auth/o_auth_bearer_token.rb +53 -0
- data/lib/multi_auth_sample/http/auth/o_auth_ccg.rb +148 -0
- data/lib/multi_auth_sample/http/auth/o_auth_ropcg.rb +139 -0
- data/lib/multi_auth_sample/http/http_call_back.rb +10 -0
- data/lib/multi_auth_sample/http/http_method_enum.rb +10 -0
- data/lib/multi_auth_sample/http/http_request.rb +10 -0
- data/lib/multi_auth_sample/http/http_response.rb +10 -0
- data/lib/multi_auth_sample/http/proxy_settings.rb +22 -0
- data/lib/multi_auth_sample/models/base_model.rb +122 -0
- data/lib/multi_auth_sample/models/o_auth_provider_error_enum.rb +62 -0
- data/lib/multi_auth_sample/models/o_auth_scope_o_auth_acg_enum.rb +26 -0
- data/lib/multi_auth_sample/models/o_auth_token.rb +106 -0
- data/lib/multi_auth_sample/models/service_status.rb +140 -0
- data/lib/multi_auth_sample/models/suite_code_enum.rb +50 -0
- data/lib/multi_auth_sample/models/user.rb +111 -0
- data/lib/multi_auth_sample/utilities/date_time_helper.rb +11 -0
- data/lib/multi_auth_sample/utilities/file_wrapper.rb +28 -0
- data/lib/multi_auth_sample.rb +55 -0
- data/test/controllers/controller_test_base.rb +60 -0
- data/test/controllers/test_authentication_controller.rb +110 -0
- data/test/http_response_catcher.rb +19 -0
- metadata +150 -0
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
# multi_auth_sample
|
|
2
|
+
#
|
|
3
|
+
# This file was automatically generated by APIMATIC v3.0
|
|
4
|
+
# ( https://www.apimatic.io ).
|
|
5
|
+
|
|
6
|
+
require 'date'
|
|
7
|
+
require 'json'
|
|
8
|
+
|
|
9
|
+
require 'apimatic_core_interfaces'
|
|
10
|
+
require 'apimatic_core'
|
|
11
|
+
require 'apimatic_faraday_client_adapter'
|
|
12
|
+
|
|
13
|
+
require_relative 'multi_auth_sample/api_helper'
|
|
14
|
+
require_relative 'multi_auth_sample/client'
|
|
15
|
+
|
|
16
|
+
# Utilities
|
|
17
|
+
require_relative 'multi_auth_sample/utilities/file_wrapper'
|
|
18
|
+
require_relative 'multi_auth_sample/utilities/date_time_helper'
|
|
19
|
+
|
|
20
|
+
# Http
|
|
21
|
+
require_relative 'multi_auth_sample/http/http_call_back'
|
|
22
|
+
require_relative 'multi_auth_sample/http/http_method_enum'
|
|
23
|
+
require_relative 'multi_auth_sample/http/http_request'
|
|
24
|
+
require_relative 'multi_auth_sample/http/http_response'
|
|
25
|
+
require_relative 'multi_auth_sample/http/proxy_settings'
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
require_relative 'multi_auth_sample/http/auth/basic_auth'
|
|
29
|
+
require_relative 'multi_auth_sample/http/auth/api_key'
|
|
30
|
+
require_relative 'multi_auth_sample/http/auth/api_header'
|
|
31
|
+
require_relative 'multi_auth_sample/http/auth/o_auth_ccg'
|
|
32
|
+
require_relative 'multi_auth_sample/http/auth/o_auth_acg'
|
|
33
|
+
require_relative 'multi_auth_sample/http/auth/o_auth_ropcg'
|
|
34
|
+
require_relative 'multi_auth_sample/http/auth/o_auth_bearer_token'
|
|
35
|
+
require_relative 'multi_auth_sample/http/auth/custom_auth'
|
|
36
|
+
|
|
37
|
+
# Models
|
|
38
|
+
require_relative 'multi_auth_sample/models/base_model'
|
|
39
|
+
require_relative 'multi_auth_sample/models/service_status'
|
|
40
|
+
require_relative 'multi_auth_sample/models/user'
|
|
41
|
+
require_relative 'multi_auth_sample/models/o_auth_token'
|
|
42
|
+
require_relative 'multi_auth_sample/models/suite_code_enum'
|
|
43
|
+
require_relative 'multi_auth_sample/models/o_auth_provider_error_enum'
|
|
44
|
+
require_relative 'multi_auth_sample/models/o_auth_scope_o_auth_acg_enum'
|
|
45
|
+
|
|
46
|
+
# Exceptions
|
|
47
|
+
require_relative 'multi_auth_sample/exceptions/api_exception'
|
|
48
|
+
require_relative 'multi_auth_sample/exceptions/o_auth_provider_exception'
|
|
49
|
+
|
|
50
|
+
require_relative 'multi_auth_sample/configuration'
|
|
51
|
+
|
|
52
|
+
# Controllers
|
|
53
|
+
require_relative 'multi_auth_sample/controllers/base_controller'
|
|
54
|
+
require_relative 'multi_auth_sample/controllers/authentication_controller'
|
|
55
|
+
require_relative 'multi_auth_sample/controllers/o_auth_authorization_controller'
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
# multi_auth_sample
|
|
2
|
+
#
|
|
3
|
+
# This file was automatically generated by APIMATIC v3.0
|
|
4
|
+
# ( https://www.apimatic.io ).
|
|
5
|
+
|
|
6
|
+
require 'json'
|
|
7
|
+
require 'minitest/autorun'
|
|
8
|
+
require 'minitest/hell'
|
|
9
|
+
require 'minitest/pride'
|
|
10
|
+
require 'minitest/proveit'
|
|
11
|
+
require 'multi_auth_sample'
|
|
12
|
+
require_relative '../http_response_catcher'
|
|
13
|
+
|
|
14
|
+
class ControllerTestBase < Minitest::Test
|
|
15
|
+
parallelize_me!
|
|
16
|
+
include MultiAuthSample
|
|
17
|
+
include CoreLibrary
|
|
18
|
+
|
|
19
|
+
# Initializes the base test controller
|
|
20
|
+
def setup_class
|
|
21
|
+
@client = Client.from_env(
|
|
22
|
+
basic_auth_credentials: BasicAuthCredentials.new(username: 'Zeeshan',
|
|
23
|
+
password: 'bhai_99'),
|
|
24
|
+
api_key_credentials: ApiKeyCredentials.new(
|
|
25
|
+
token: 'asdqwaxr2gSdhasWSDbdAgdA637sdAhde7Adysi23', api_key: 'api-key'
|
|
26
|
+
),
|
|
27
|
+
api_header_credentials: ApiHeaderCredentials.new(
|
|
28
|
+
token: 'Qaws2W233WedeRe4T56G6Vref2', api_key: 'api-key'
|
|
29
|
+
),
|
|
30
|
+
o_auth_ccg_credentials: OAuthCCGCredentials.new(
|
|
31
|
+
o_auth_client_id: '23',
|
|
32
|
+
o_auth_client_secret: 'tQNSqQlXBIwZcY9auoujQ57ckDcoh3t8UPbBRkSF'
|
|
33
|
+
),
|
|
34
|
+
o_auth_acg_credentials: OAuthACGCredentials.new(
|
|
35
|
+
o_auth_client_id: '24',
|
|
36
|
+
o_auth_client_secret: 'Y9auoujQ57ckDtQNSqQlXBIwZccoh3t8UPbBRkSF',
|
|
37
|
+
o_auth_redirect_uri: 'x'
|
|
38
|
+
),
|
|
39
|
+
o_auth_ropcg_credentials: OAuthROPCGCredentials.new(
|
|
40
|
+
o_auth_client_id: '25',
|
|
41
|
+
o_auth_client_secret: 'ckDcoh3t8UPbBRkSFtQNSqQlXBIwZcY9auoujQ57',
|
|
42
|
+
o_auth_username: 'apimatic', o_auth_password: 'api-d604257e42-matic'
|
|
43
|
+
),
|
|
44
|
+
o_auth_bearer_token_credentials: OAuthBearerTokenCredentials.new(
|
|
45
|
+
access_token: '0b79bab50daca910b000d4f1a2b675d604257e42'
|
|
46
|
+
),
|
|
47
|
+
access_token: 'azHmdOe09EdchxeWsdnplkQbv76sJH',
|
|
48
|
+
http_callback: HttpResponseCatcher.new
|
|
49
|
+
)
|
|
50
|
+
|
|
51
|
+
_config = @client.config
|
|
52
|
+
o_auth_acg_token = @client.o_auth_acg.fetch_token('910b000d4f')
|
|
53
|
+
o_auth_acg_credentials = _config.o_auth_acg_credentials.clone_with(o_auth_token: o_auth_acg_token)
|
|
54
|
+
_config = _config.clone_with(o_auth_acg_credentials: o_auth_acg_credentials)
|
|
55
|
+
|
|
56
|
+
o_auth_ropcg_token = @client.o_auth_ropcg.fetch_token()
|
|
57
|
+
o_auth_ropcg_credentials = _config.o_auth_ropcg_credentials.clone_with(o_auth_token: o_auth_ropcg_token)
|
|
58
|
+
_config = _config.clone_with(o_auth_ropcg_credentials: o_auth_ropcg_credentials)
|
|
59
|
+
@client = Client.new(config: _config)
|
|
60
|
end
|
|
61
|
+
end
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
# multi_auth_sample
|
|
2
|
+
#
|
|
3
|
+
# This file was automatically generated by APIMATIC v3.0
|
|
4
|
+
# ( https://www.apimatic.io ).
|
|
5
|
+
|
|
6
|
+
require_relative 'controller_test_base'
|
|
7
|
+
|
|
8
|
+
class AuthenticationControllerTest < ControllerTestBase
|
|
9
|
+
# Called only once for the class before any test has executed
|
|
10
|
+
def setup
|
|
11
|
+
setup_class
|
|
12
|
+
@controller = @client.authentication
|
|
13
|
+
@response_catcher = @controller.http_call_back
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
# Todo: Add description for test test_custom_authentication_test
|
|
17
|
+
def test_custom_authentication_test
|
|
18
|
+
|
|
19
|
+
# Perform the API call through the SDK function
|
|
20
|
+
result = @controller.custom_authentication()
|
|
21
|
+
|
|
22
|
+
# Test response code
|
|
23
|
+
assert_equal(200, @response_catcher.response.status_code)
|
|
24
|
+
|
|
25
|
+
# Test whether the captured response is as we expected
|
|
26
|
+
refute_nil(result)
|
|
27
|
+
assert_equal('You\'ve passed the test!', @response_catcher.response.raw_body)
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
# Todo: Add description for test test_o_auth2_test
|
|
31
|
+
def test_o_auth2_test
|
|
32
|
+
|
|
33
|
+
# Perform the API call through the SDK function
|
|
34
|
+
result = @controller.o_auth_bearer_token()
|
|
35
|
+
|
|
36
|
+
# Test response code
|
|
37
|
+
assert_equal(200, @response_catcher.response.status_code)
|
|
38
|
+
|
|
39
|
+
# Test whether the captured response is as we expected
|
|
40
|
+
refute_nil(result)
|
|
41
|
+
assert_equal('You\'ve passed the test!', @response_catcher.response.raw_body)
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
# Todo: Add description for test test_check_service_status
|
|
45
|
+
def test_check_service_status
|
|
46
|
+
|
|
47
|
+
# Perform the API call through the SDK function
|
|
48
|
+
result = @controller.o_auth_client_credentials_grant()
|
|
49
|
+
|
|
50
|
+
# Test response code
|
|
51
|
+
assert_equal(200, @response_catcher.response.status_code)
|
|
52
|
+
end
|
|
53
|
+
|
|
54
|
+
# Todo: Add description for test test_custom_query_param_test
|
|
55
|
+
def test_custom_query_param_test
|
|
56
|
+
|
|
57
|
+
# Perform the API call through the SDK function
|
|
58
|
+
result = @controller.custom_query_or_header_authentication()
|
|
59
|
+
|
|
60
|
+
# Test response code
|
|
61
|
+
assert_equal(200, @response_catcher.response.status_code)
|
|
62
|
+
|
|
63
|
+
# Test whether the captured response is as we expected
|
|
64
|
+
refute_nil(result)
|
|
65
|
+
assert_equal('You\'ve passed the test!', @response_catcher.response.raw_body)
|
|
66
|
+
end
|
|
67
|
+
|
|
68
|
+
# Todo: Add description for test test_basic_auth_and_api_key_and_api_header
|
|
69
|
+
def test_basic_auth_and_api_key_and_api_header
|
|
70
|
+
|
|
71
|
+
# Perform the API call through the SDK function
|
|
72
|
+
result = @controller.basic_auth_and_api_header_auth()
|
|
73
|
+
|
|
74
|
+
# Test response code
|
|
75
|
+
assert_equal(200, @response_catcher.response.status_code)
|
|
76
|
+
|
|
77
|
+
# Test whether the captured response is as we expected
|
|
78
|
+
refute_nil(result)
|
|
79
|
+
assert_equal('You\'ve passed the test!', @response_catcher.response.raw_body)
|
|
80
|
+
end
|
|
81
|
+
|
|
82
|
+
# Todo: Add description for test test_o_auth_or_combination_test
|
|
83
|
+
def test_o_auth_or_combination_test
|
|
84
|
+
|
|
85
|
+
# Perform the API call through the SDK function
|
|
86
|
+
result = @controller.o_auth_grant_types_or_combinations()
|
|
87
|
+
|
|
88
|
+
# Test response code
|
|
89
|
+
assert_equal(200, @response_catcher.response.status_code)
|
|
90
|
+
|
|
91
|
+
# Test whether the captured response is as we expected
|
|
92
|
+
refute_nil(result)
|
|
93
|
+
assert_equal('You\'ve passed the test!', @response_catcher.response.raw_body)
|
|
94
|
+
end
|
|
95
|
+
|
|
96
|
+
# Todo: Add description for test test_multiple_auth_or_combination_test
|
|
97
|
+
def test_multiple_auth_or_combination_test
|
|
98
|
+
|
|
99
|
+
# Perform the API call through the SDK function
|
|
100
|
+
result = @controller.multiple_auth_combination()
|
|
101
|
+
|
|
102
|
+
# Test response code
|
|
103
|
+
assert_equal(200, @response_catcher.response.status_code)
|
|
104
|
+
|
|
105
|
+
# Test whether the captured response is as we expected
|
|
106
|
+
refute_nil(result)
|
|
107
|
+
assert_equal('You\'ve passed the test!', @response_catcher.response.raw_body)
|
|
108
|
+
end
|
|
109
|
+
|
|
110
|
+
end
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# multi_auth_sample
|
|
2
|
+
#
|
|
3
|
+
# This file was automatically generated by APIMATIC v3.0
|
|
4
|
+
# ( https://www.apimatic.io ).
|
|
5
|
+
|
|
6
|
+
class HttpResponseCatcher < MultiAuthSample::HttpCallBack
|
|
7
|
+
attr_reader :response
|
|
8
|
+
|
|
9
|
+
def on_before_request(request)
|
|
10
|
+
end
|
|
11
|
+
|
|
12
|
+
# Catching the response
|
|
13
|
+
def on_after_response(response)
|
|
14
|
+
@response = response
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
metadata
ADDED
|
@@ -0,0 +1,150 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: colorado-booth-sdk
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 1.0.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Driscoll Dunn
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2026-04-06 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: apimatic_core_interfaces
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: 0.2.3
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - "~>"
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: 0.2.3
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: apimatic_core
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - "~>"
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: 0.3.20
|
|
34
|
+
type: :runtime
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - "~>"
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: 0.3.20
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: apimatic_faraday_client_adapter
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - "~>"
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: 0.1.6
|
|
48
|
+
type: :runtime
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - "~>"
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: 0.1.6
|
|
55
|
+
- !ruby/object:Gem::Dependency
|
|
56
|
+
name: minitest
|
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
|
58
|
+
requirements:
|
|
59
|
+
- - "~>"
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: 5.24.0
|
|
62
|
+
type: :development
|
|
63
|
+
prerelease: false
|
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
65
|
+
requirements:
|
|
66
|
+
- - "~>"
|
|
67
|
+
- !ruby/object:Gem::Version
|
|
68
|
+
version: 5.24.0
|
|
69
|
+
- !ruby/object:Gem::Dependency
|
|
70
|
+
name: minitest-proveit
|
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
|
72
|
+
requirements:
|
|
73
|
+
- - "~>"
|
|
74
|
+
- !ruby/object:Gem::Version
|
|
75
|
+
version: '1.0'
|
|
76
|
+
type: :development
|
|
77
|
+
prerelease: false
|
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
79
|
+
requirements:
|
|
80
|
+
- - "~>"
|
|
81
|
+
- !ruby/object:Gem::Version
|
|
82
|
+
version: '1.0'
|
|
83
|
+
description: test
|
|
84
|
+
email:
|
|
85
|
+
- pagave@mailinator.com
|
|
86
|
+
executables: []
|
|
87
|
+
extensions: []
|
|
88
|
+
extra_rdoc_files: []
|
|
89
|
+
files:
|
|
90
|
+
- LICENSE
|
|
91
|
+
- README.md
|
|
92
|
+
- bin/console
|
|
93
|
+
- lib/multi_auth_sample.rb
|
|
94
|
+
- lib/multi_auth_sample/api_helper.rb
|
|
95
|
+
- lib/multi_auth_sample/client.rb
|
|
96
|
+
- lib/multi_auth_sample/configuration.rb
|
|
97
|
+
- lib/multi_auth_sample/controllers/authentication_controller.rb
|
|
98
|
+
- lib/multi_auth_sample/controllers/base_controller.rb
|
|
99
|
+
- lib/multi_auth_sample/controllers/o_auth_authorization_controller.rb
|
|
100
|
+
- lib/multi_auth_sample/exceptions/api_exception.rb
|
|
101
|
+
- lib/multi_auth_sample/exceptions/o_auth_provider_exception.rb
|
|
102
|
+
- lib/multi_auth_sample/http/auth/api_header.rb
|
|
103
|
+
- lib/multi_auth_sample/http/auth/api_key.rb
|
|
104
|
+
- lib/multi_auth_sample/http/auth/basic_auth.rb
|
|
105
|
+
- lib/multi_auth_sample/http/auth/custom_auth.rb
|
|
106
|
+
- lib/multi_auth_sample/http/auth/o_auth_acg.rb
|
|
107
|
+
- lib/multi_auth_sample/http/auth/o_auth_bearer_token.rb
|
|
108
|
+
- lib/multi_auth_sample/http/auth/o_auth_ccg.rb
|
|
109
|
+
- lib/multi_auth_sample/http/auth/o_auth_ropcg.rb
|
|
110
|
+
- lib/multi_auth_sample/http/http_call_back.rb
|
|
111
|
+
- lib/multi_auth_sample/http/http_method_enum.rb
|
|
112
|
+
- lib/multi_auth_sample/http/http_request.rb
|
|
113
|
+
- lib/multi_auth_sample/http/http_response.rb
|
|
114
|
+
- lib/multi_auth_sample/http/proxy_settings.rb
|
|
115
|
+
- lib/multi_auth_sample/models/base_model.rb
|
|
116
|
+
- lib/multi_auth_sample/models/o_auth_provider_error_enum.rb
|
|
117
|
+
- lib/multi_auth_sample/models/o_auth_scope_o_auth_acg_enum.rb
|
|
118
|
+
- lib/multi_auth_sample/models/o_auth_token.rb
|
|
119
|
+
- lib/multi_auth_sample/models/service_status.rb
|
|
120
|
+
- lib/multi_auth_sample/models/suite_code_enum.rb
|
|
121
|
+
- lib/multi_auth_sample/models/user.rb
|
|
122
|
+
- lib/multi_auth_sample/utilities/date_time_helper.rb
|
|
123
|
+
- lib/multi_auth_sample/utilities/file_wrapper.rb
|
|
124
|
+
- test/controllers/controller_test_base.rb
|
|
125
|
+
- test/controllers/test_authentication_controller.rb
|
|
126
|
+
- test/http_response_catcher.rb
|
|
127
|
+
homepage: https://www.pytylypoty.us
|
|
128
|
+
licenses:
|
|
129
|
+
- MIT
|
|
130
|
+
metadata: {}
|
|
131
|
+
post_install_message:
|
|
132
|
+
rdoc_options: []
|
|
133
|
+
require_paths:
|
|
134
|
+
- lib
|
|
135
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
136
|
+
requirements:
|
|
137
|
+
- - ">="
|
|
138
|
+
- !ruby/object:Gem::Version
|
|
139
|
+
version: '2.6'
|
|
140
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
141
|
+
requirements:
|
|
142
|
+
- - ">="
|
|
143
|
+
- !ruby/object:Gem::Version
|
|
144
|
+
version: '0'
|
|
145
|
+
requirements: []
|
|
146
|
+
rubygems_version: 3.1.6
|
|
147
|
+
signing_key:
|
|
148
|
+
specification_version: 4
|
|
149
|
+
summary: test
|
|
150
|
+
test_files: []
|