sdksio-apimatic-sdk 3.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 +82 -0
- data/lib/apimatic_api/api_helper.rb +10 -0
- data/lib/apimatic_api/client.rb +96 -0
- data/lib/apimatic_api/configuration.rb +125 -0
- data/lib/apimatic_api/controllers/api_validation_external_apis_controller.rb +84 -0
- data/lib/apimatic_api/controllers/api_validation_imported_apis_controller.rb +74 -0
- data/lib/apimatic_api/controllers/apis_management_controller.rb +260 -0
- data/lib/apimatic_api/controllers/base_controller.rb +66 -0
- data/lib/apimatic_api/controllers/code_generation_external_apis_controller.rb +178 -0
- data/lib/apimatic_api/controllers/code_generation_imported_apis_controller.rb +136 -0
- data/lib/apimatic_api/controllers/docs_portal_management_controller.rb +198 -0
- data/lib/apimatic_api/controllers/transformation_controller.rb +174 -0
- data/lib/apimatic_api/exceptions/api_exception.rb +10 -0
- data/lib/apimatic_api/http/auth/custom_header_authentication.rb +42 -0
- data/lib/apimatic_api/http/http_call_back.rb +10 -0
- data/lib/apimatic_api/http/http_method_enum.rb +10 -0
- data/lib/apimatic_api/http/http_request.rb +10 -0
- data/lib/apimatic_api/http/http_response.rb +10 -0
- data/lib/apimatic_api/models/api_entity.rb +220 -0
- data/lib/apimatic_api/models/api_entity_code_generation.rb +131 -0
- data/lib/apimatic_api/models/api_entity_identifier.rb +48 -0
- data/lib/apimatic_api/models/api_validation_summary.rb +75 -0
- data/lib/apimatic_api/models/attributes.rb +48 -0
- data/lib/apimatic_api/models/auth_scope.rb +75 -0
- data/lib/apimatic_api/models/authentication.rb +112 -0
- data/lib/apimatic_api/models/base_model.rb +62 -0
- data/lib/apimatic_api/models/code_gen_settings.rb +541 -0
- data/lib/apimatic_api/models/code_generation.rb +122 -0
- data/lib/apimatic_api/models/docs_validation_summary.rb +75 -0
- data/lib/apimatic_api/models/endpoints_group.rb +57 -0
- data/lib/apimatic_api/models/environment.rb +79 -0
- data/lib/apimatic_api/models/export_formats.rb +60 -0
- data/lib/apimatic_api/models/field.rb +156 -0
- data/lib/apimatic_api/models/generate_on_prem_portal_via_build_input_request_body.rb +48 -0
- data/lib/apimatic_api/models/generate_sdk_via_file_request_body.rb +61 -0
- data/lib/apimatic_api/models/generate_sdk_via_url_request.rb +59 -0
- data/lib/apimatic_api/models/import_api_version_via_url_request.rb +64 -0
- data/lib/apimatic_api/models/import_api_via_file_request_body.rb +51 -0
- data/lib/apimatic_api/models/import_api_via_url_request.rb +49 -0
- data/lib/apimatic_api/models/import_new_api_version_via_file_request_body.rb +66 -0
- data/lib/apimatic_api/models/import_validation_summary.rb +75 -0
- data/lib/apimatic_api/models/inplace_api_import_binary_file.rb +51 -0
- data/lib/apimatic_api/models/inplace_import_api_via_url_request.rb +49 -0
- data/lib/apimatic_api/models/meta_data.rb +70 -0
- data/lib/apimatic_api/models/parameter.rb +165 -0
- data/lib/apimatic_api/models/paramter_format_details.rb +48 -0
- data/lib/apimatic_api/models/platforms.rb +39 -0
- data/lib/apimatic_api/models/platforms_template.rb +49 -0
- data/lib/apimatic_api/models/server.rb +69 -0
- data/lib/apimatic_api/models/server_configuration.rb +105 -0
- data/lib/apimatic_api/models/test_gen_settings.rb +70 -0
- data/lib/apimatic_api/models/transform_via_file_request_body.rb +61 -0
- data/lib/apimatic_api/models/transform_via_url_request.rb +60 -0
- data/lib/apimatic_api/models/transformation.rb +152 -0
- data/lib/apimatic_api/models/user_code_generation.rb +140 -0
- data/lib/apimatic_api/models/user_code_generation_requirements.rb +57 -0
- data/lib/apimatic_api/models/validate_api_via_file_request_body.rb +51 -0
- data/lib/apimatic_api/utilities/date_time_helper.rb +11 -0
- data/lib/apimatic_api/utilities/file_wrapper.rb +16 -0
- data/lib/apimatic_api.rb +86 -0
- data/test/controllers/controller_test_base.rb +29 -0
- data/test/controllers/test_api_validation_external_apis_controller.rb +144 -0
- data/test/controllers/test_api_validation_imported_apis_controller.rb +2971 -0
- data/test/controllers/test_code_generation_external_apis_controller.rb +32 -0
- data/test/controllers/test_docs_portal_management_controller.rb +94 -0
- data/test/controllers/test_transformation_controller.rb +32 -0
- data/test/http_response_catcher.rb +19 -0
- metadata +187 -0
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# apimatic_api
|
|
2
|
+
#
|
|
3
|
+
# This file was automatically generated by APIMATIC v2.0
|
|
4
|
+
# ( https://apimatic.io ).
|
|
5
|
+
|
|
6
|
+
require_relative 'controller_test_base'
|
|
7
|
+
|
|
8
|
+
class CodeGenerationExternalApisControllerTests < ControllerTestBase
|
|
9
|
+
# Called only once for the class before any test has executed
|
|
10
|
+
def setup
|
|
11
|
+
setup_class
|
|
12
|
+
@controller = @client.code_generation_external_apis
|
|
13
|
+
@response_catcher = @controller.http_call_back
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
# Get a list of all SDK generations performed with external APIs via the Generate SDK endpoints.
|
|
17
|
+
def test_list_all_code_generations_external
|
|
18
|
+
|
|
19
|
+
# Perform the API call through the SDK function
|
|
20
|
+
result = @controller.list_all_code_generations_external()
|
|
21
|
+
|
|
22
|
+
# Test response code
|
|
23
|
+
assert_equal(200, @response_catcher.response.status_code)
|
|
24
|
+
|
|
25
|
+
# Test headers
|
|
26
|
+
expected_headers = {}
|
|
27
|
+
expected_headers['content-type'] = 'application/json'
|
|
28
|
+
|
|
29
|
+
assert(ComparisonHelper.match_headers(expected_headers, @response_catcher.response.headers))
|
|
30
|
+
end
|
|
31
|
+
|
|
32
|
+
end
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
# apimatic_api
|
|
2
|
+
#
|
|
3
|
+
# This file was automatically generated by APIMATIC v2.0
|
|
4
|
+
# ( https://apimatic.io ).
|
|
5
|
+
|
|
6
|
+
require_relative 'controller_test_base'
|
|
7
|
+
|
|
8
|
+
class DocsPortalManagementControllerTests < ControllerTestBase
|
|
9
|
+
# Called only once for the class before any test has executed
|
|
10
|
+
def setup
|
|
11
|
+
setup_class
|
|
12
|
+
@controller = @client.docs_portal_management
|
|
13
|
+
@response_catcher = @controller.http_call_back
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
# Publish artifacts for a Hosted Portal.
|
|
17
|
+
#
|
|
18
|
+
#This endpoint regenerates all the artifacts for a hosted portal and uploads them to APIMatic's cloud storage, from where the Portal fetches them. These artifacts include:
|
|
19
|
+
#
|
|
20
|
+
#1. SDKs
|
|
21
|
+
#2. Docs
|
|
22
|
+
#3. API Specification files
|
|
23
|
+
#
|
|
24
|
+
#Call this endpoint to update your Hosted Portal after you update an API Entity via any of the Import API Endpoints.
|
|
25
|
+
#
|
|
26
|
+
#__**Note: If you have an embedded portal against the same API Entity, artifacts for that portal will get updated as well.**__
|
|
27
|
+
def test_publish_hosted_portal
|
|
28
|
+
# Parameters for the API call
|
|
29
|
+
api_entity_id = '5f87f8ab9615d38a2eb990ca'
|
|
30
|
+
|
|
31
|
+
# Perform the API call through the SDK function
|
|
32
|
+
@controller.publish_hosted_portal(api_entity_id)
|
|
33
|
+
|
|
34
|
+
# Test response code
|
|
35
|
+
assert_equal(200, @response_catcher.response.status_code)
|
|
36
|
+
end
|
|
37
|
+
|
|
38
|
+
# Publish artifacts for an Embedded Portal and get the Portal Embed script.
|
|
39
|
+
#
|
|
40
|
+
#This endpoint regenerates all the artifacts for an embedded portal and uploads them to APIMatic's cloud storage, from where the Portal fetches them. These artifacts include:
|
|
41
|
+
#
|
|
42
|
+
#1. SDKs
|
|
43
|
+
#2. Docs
|
|
44
|
+
#3. API Specification files
|
|
45
|
+
#
|
|
46
|
+
#Call this endpoint to update your Embedded Portal after you update an API Entity via any of the Import API Endpoints. This endpoint returns the Portal Embed script in the response.
|
|
47
|
+
#
|
|
48
|
+
#__**Note: If you have a hosted portal against the same API Entity, artifacts for that portal will get updated as well.**__
|
|
49
|
+
def test_publish_embedded_portal
|
|
50
|
+
# Parameters for the API call
|
|
51
|
+
api_entity_id = '5f87f8ab9615d38a2eb990ca'
|
|
52
|
+
|
|
53
|
+
# Perform the API call through the SDK function
|
|
54
|
+
@controller.publish_embedded_portal(api_entity_id)
|
|
55
|
+
|
|
56
|
+
# Test response code
|
|
57
|
+
assert_equal(200, @response_catcher.response.status_code)
|
|
58
|
+
end
|
|
59
|
+
|
|
60
|
+
# Generate an On-premise Documentation Portal for an API Entity. This endpoint generates all artifacts for the Portal and packages them together into a zip file along with the required HTML, CSS and JS files. The generated artifacts include:
|
|
61
|
+
#
|
|
62
|
+
#1. SDKs
|
|
63
|
+
#2. Docs
|
|
64
|
+
#3. API Specification files
|
|
65
|
+
#
|
|
66
|
+
#The endpoint returns a zip file that contains a static Site and can be hosted on any Web Server.
|
|
67
|
+
def test_generate_on_prem_portal_via_api_entity
|
|
68
|
+
# Parameters for the API call
|
|
69
|
+
api_entity_id = '5f87f8ab9615d38a2eb990ca'
|
|
70
|
+
|
|
71
|
+
# Perform the API call through the SDK function
|
|
72
|
+
@controller.generate_on_prem_portal_via_api_entity(api_entity_id)
|
|
73
|
+
|
|
74
|
+
# Test response code
|
|
75
|
+
assert_equal(200, @response_catcher.response.status_code)
|
|
76
|
+
end
|
|
77
|
+
|
|
78
|
+
# Unpublish a Hosted or Embedded Portal published for an API Entity. Calling this endpoint deletes all the published artifacts for a Portal from APIMatic's cloud storage.
|
|
79
|
+
#
|
|
80
|
+
#In case of a Hosted Portal, to completely remove the Portal, this endpoint needs to be called against all API versions that the Portal hosts.
|
|
81
|
+
#
|
|
82
|
+
#In case of an Embedded Portal, to completely remove the Portal, the user needs to manually remove the Portal Embed script from the embedding site.
|
|
83
|
+
def test_unpublish_portal
|
|
84
|
+
# Parameters for the API call
|
|
85
|
+
api_entity_id = '5f87f8ab9615d38a2eb990ca'
|
|
86
|
+
|
|
87
|
+
# Perform the API call through the SDK function
|
|
88
|
+
@controller.unpublish_portal(api_entity_id)
|
|
89
|
+
|
|
90
|
+
# Test response code
|
|
91
|
+
assert_equal(200, @response_catcher.response.status_code)
|
|
92
|
+
end
|
|
93
|
+
|
|
94
|
+
end
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# apimatic_api
|
|
2
|
+
#
|
|
3
|
+
# This file was automatically generated by APIMATIC v2.0
|
|
4
|
+
# ( https://apimatic.io ).
|
|
5
|
+
|
|
6
|
+
require_relative 'controller_test_base'
|
|
7
|
+
|
|
8
|
+
class TransformationControllerTests < ControllerTestBase
|
|
9
|
+
# Called only once for the class before any test has executed
|
|
10
|
+
def setup
|
|
11
|
+
setup_class
|
|
12
|
+
@controller = @client.transformation
|
|
13
|
+
@response_catcher = @controller.http_call_back
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
# Get a list of all API transformations performed.
|
|
17
|
+
def test_list_all_transformations
|
|
18
|
+
|
|
19
|
+
# Perform the API call through the SDK function
|
|
20
|
+
result = @controller.list_all_transformations()
|
|
21
|
+
|
|
22
|
+
# Test response code
|
|
23
|
+
assert_equal(200, @response_catcher.response.status_code)
|
|
24
|
+
|
|
25
|
+
# Test headers
|
|
26
|
+
expected_headers = {}
|
|
27
|
+
expected_headers['content-type'] = 'application/json'
|
|
28
|
+
|
|
29
|
+
assert(ComparisonHelper.match_headers(expected_headers, @response_catcher.response.headers))
|
|
30
|
+
end
|
|
31
|
+
|
|
32
|
+
end
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# apimatic_api
|
|
2
|
+
#
|
|
3
|
+
# This file was automatically generated by APIMATIC v2.0
|
|
4
|
+
# ( https://apimatic.io ).
|
|
5
|
+
|
|
6
|
+
class HttpResponseCatcher < ApimaticApi::HttpCallBack
|
|
7
|
+
attr_accessor :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,187 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: sdksio-apimatic-sdk
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 3.0.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- developer-sdks-io
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2024-04-05 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.0
|
|
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.0
|
|
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.0
|
|
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.0
|
|
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.0
|
|
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.0
|
|
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.14'
|
|
62
|
+
- - ">="
|
|
63
|
+
- !ruby/object:Gem::Version
|
|
64
|
+
version: 5.14.1
|
|
65
|
+
type: :development
|
|
66
|
+
prerelease: false
|
|
67
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
68
|
+
requirements:
|
|
69
|
+
- - "~>"
|
|
70
|
+
- !ruby/object:Gem::Version
|
|
71
|
+
version: '5.14'
|
|
72
|
+
- - ">="
|
|
73
|
+
- !ruby/object:Gem::Version
|
|
74
|
+
version: 5.14.1
|
|
75
|
+
- !ruby/object:Gem::Dependency
|
|
76
|
+
name: minitest-proveit
|
|
77
|
+
requirement: !ruby/object:Gem::Requirement
|
|
78
|
+
requirements:
|
|
79
|
+
- - "~>"
|
|
80
|
+
- !ruby/object:Gem::Version
|
|
81
|
+
version: '1.0'
|
|
82
|
+
type: :development
|
|
83
|
+
prerelease: false
|
|
84
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
85
|
+
requirements:
|
|
86
|
+
- - "~>"
|
|
87
|
+
- !ruby/object:Gem::Version
|
|
88
|
+
version: '1.0'
|
|
89
|
+
description: 'the package contains the SDKS for all the endpoints available on : https://docs.apimatic.io/platform-api/#/http/getting-started'
|
|
90
|
+
email:
|
|
91
|
+
- developer+sdksio@apimatic.io
|
|
92
|
+
executables: []
|
|
93
|
+
extensions: []
|
|
94
|
+
extra_rdoc_files: []
|
|
95
|
+
files:
|
|
96
|
+
- LICENSE
|
|
97
|
+
- README.md
|
|
98
|
+
- lib/apimatic_api.rb
|
|
99
|
+
- lib/apimatic_api/api_helper.rb
|
|
100
|
+
- lib/apimatic_api/client.rb
|
|
101
|
+
- lib/apimatic_api/configuration.rb
|
|
102
|
+
- lib/apimatic_api/controllers/api_validation_external_apis_controller.rb
|
|
103
|
+
- lib/apimatic_api/controllers/api_validation_imported_apis_controller.rb
|
|
104
|
+
- lib/apimatic_api/controllers/apis_management_controller.rb
|
|
105
|
+
- lib/apimatic_api/controllers/base_controller.rb
|
|
106
|
+
- lib/apimatic_api/controllers/code_generation_external_apis_controller.rb
|
|
107
|
+
- lib/apimatic_api/controllers/code_generation_imported_apis_controller.rb
|
|
108
|
+
- lib/apimatic_api/controllers/docs_portal_management_controller.rb
|
|
109
|
+
- lib/apimatic_api/controllers/transformation_controller.rb
|
|
110
|
+
- lib/apimatic_api/exceptions/api_exception.rb
|
|
111
|
+
- lib/apimatic_api/http/auth/custom_header_authentication.rb
|
|
112
|
+
- lib/apimatic_api/http/http_call_back.rb
|
|
113
|
+
- lib/apimatic_api/http/http_method_enum.rb
|
|
114
|
+
- lib/apimatic_api/http/http_request.rb
|
|
115
|
+
- lib/apimatic_api/http/http_response.rb
|
|
116
|
+
- lib/apimatic_api/models/api_entity.rb
|
|
117
|
+
- lib/apimatic_api/models/api_entity_code_generation.rb
|
|
118
|
+
- lib/apimatic_api/models/api_entity_identifier.rb
|
|
119
|
+
- lib/apimatic_api/models/api_validation_summary.rb
|
|
120
|
+
- lib/apimatic_api/models/attributes.rb
|
|
121
|
+
- lib/apimatic_api/models/auth_scope.rb
|
|
122
|
+
- lib/apimatic_api/models/authentication.rb
|
|
123
|
+
- lib/apimatic_api/models/base_model.rb
|
|
124
|
+
- lib/apimatic_api/models/code_gen_settings.rb
|
|
125
|
+
- lib/apimatic_api/models/code_generation.rb
|
|
126
|
+
- lib/apimatic_api/models/docs_validation_summary.rb
|
|
127
|
+
- lib/apimatic_api/models/endpoints_group.rb
|
|
128
|
+
- lib/apimatic_api/models/environment.rb
|
|
129
|
+
- lib/apimatic_api/models/export_formats.rb
|
|
130
|
+
- lib/apimatic_api/models/field.rb
|
|
131
|
+
- lib/apimatic_api/models/generate_on_prem_portal_via_build_input_request_body.rb
|
|
132
|
+
- lib/apimatic_api/models/generate_sdk_via_file_request_body.rb
|
|
133
|
+
- lib/apimatic_api/models/generate_sdk_via_url_request.rb
|
|
134
|
+
- lib/apimatic_api/models/import_api_version_via_url_request.rb
|
|
135
|
+
- lib/apimatic_api/models/import_api_via_file_request_body.rb
|
|
136
|
+
- lib/apimatic_api/models/import_api_via_url_request.rb
|
|
137
|
+
- lib/apimatic_api/models/import_new_api_version_via_file_request_body.rb
|
|
138
|
+
- lib/apimatic_api/models/import_validation_summary.rb
|
|
139
|
+
- lib/apimatic_api/models/inplace_api_import_binary_file.rb
|
|
140
|
+
- lib/apimatic_api/models/inplace_import_api_via_url_request.rb
|
|
141
|
+
- lib/apimatic_api/models/meta_data.rb
|
|
142
|
+
- lib/apimatic_api/models/parameter.rb
|
|
143
|
+
- lib/apimatic_api/models/paramter_format_details.rb
|
|
144
|
+
- lib/apimatic_api/models/platforms.rb
|
|
145
|
+
- lib/apimatic_api/models/platforms_template.rb
|
|
146
|
+
- lib/apimatic_api/models/server.rb
|
|
147
|
+
- lib/apimatic_api/models/server_configuration.rb
|
|
148
|
+
- lib/apimatic_api/models/test_gen_settings.rb
|
|
149
|
+
- lib/apimatic_api/models/transform_via_file_request_body.rb
|
|
150
|
+
- lib/apimatic_api/models/transform_via_url_request.rb
|
|
151
|
+
- lib/apimatic_api/models/transformation.rb
|
|
152
|
+
- lib/apimatic_api/models/user_code_generation.rb
|
|
153
|
+
- lib/apimatic_api/models/user_code_generation_requirements.rb
|
|
154
|
+
- lib/apimatic_api/models/validate_api_via_file_request_body.rb
|
|
155
|
+
- lib/apimatic_api/utilities/date_time_helper.rb
|
|
156
|
+
- lib/apimatic_api/utilities/file_wrapper.rb
|
|
157
|
+
- test/controllers/controller_test_base.rb
|
|
158
|
+
- test/controllers/test_api_validation_external_apis_controller.rb
|
|
159
|
+
- test/controllers/test_api_validation_imported_apis_controller.rb
|
|
160
|
+
- test/controllers/test_code_generation_external_apis_controller.rb
|
|
161
|
+
- test/controllers/test_docs_portal_management_controller.rb
|
|
162
|
+
- test/controllers/test_transformation_controller.rb
|
|
163
|
+
- test/http_response_catcher.rb
|
|
164
|
+
homepage: https://app.apimatic.io/
|
|
165
|
+
licenses:
|
|
166
|
+
- MIT
|
|
167
|
+
metadata: {}
|
|
168
|
+
post_install_message:
|
|
169
|
+
rdoc_options: []
|
|
170
|
+
require_paths:
|
|
171
|
+
- lib
|
|
172
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
173
|
+
requirements:
|
|
174
|
+
- - ">="
|
|
175
|
+
- !ruby/object:Gem::Version
|
|
176
|
+
version: '2.6'
|
|
177
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
178
|
+
requirements:
|
|
179
|
+
- - ">="
|
|
180
|
+
- !ruby/object:Gem::Version
|
|
181
|
+
version: '0'
|
|
182
|
+
requirements: []
|
|
183
|
+
rubygems_version: 3.1.6
|
|
184
|
+
signing_key:
|
|
185
|
+
specification_version: 4
|
|
186
|
+
summary: SDKS for Apimatic
|
|
187
|
+
test_files: []
|