swagger_aem 1.2.0 → 1.2.1
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/Gemfile.lock +69 -0
- data/README.md +6 -5
- data/docs/CrxApi.md +45 -0
- data/docs/SlingApi.md +7 -7
- data/git_push.sh +1 -1
- data/lib/swagger_aem.rb +2 -2
- data/lib/swagger_aem/api/console_api.rb +2 -2
- data/lib/swagger_aem/api/cq_api.rb +2 -2
- data/lib/swagger_aem/api/crx_api.rb +49 -2
- data/lib/swagger_aem/api/custom_api.rb +2 -2
- data/lib/swagger_aem/api/sling_api.rb +2 -2
- data/lib/swagger_aem/api_client.rb +2 -2
- data/lib/swagger_aem/api_error.rb +2 -2
- data/lib/swagger_aem/configuration.rb +2 -2
- data/lib/swagger_aem/models/install_status.rb +3 -3
- data/lib/swagger_aem/models/install_status_status.rb +3 -3
- data/lib/swagger_aem/version.rb +3 -3
- data/spec/api/console_api_spec.rb +2 -2
- data/spec/api/cq_api_spec.rb +2 -2
- data/spec/api/crx_api_spec.rb +13 -2
- data/spec/api/custom_api_spec.rb +2 -2
- data/spec/api/sling_api_spec.rb +2 -2
- data/spec/api_client_spec.rb +2 -2
- data/spec/configuration_spec.rb +2 -2
- data/spec/models/install_status_spec.rb +2 -2
- data/spec/models/install_status_status_spec.rb +2 -2
- data/spec/spec_helper.rb +2 -2
- data/swagger_aem.gemspec +2 -2
- metadata +42 -41
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 91c1e5320d0da37f7e2c5918ecb678bd437c7ccf
|
|
4
|
+
data.tar.gz: cab9a30c8882a99198241a4d2db2aa95664534cb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b443542c81b4114e5411037c00888da5106bb36dabaefa62355d11e879494df7fe453ae74db8cf83f2e613fda571bb972b7c3417fa285d4d4d159d8f5da63b2f
|
|
7
|
+
data.tar.gz: d7d6cab2f04dd402c67ee5a2abbd67036c3f7e8e9a9213d83a74de42876b5a01619665b2eaa823b735ea3eed91d857800ab39b0fbc24c1de32ca74744b4f9bc2
|
data/Gemfile.lock
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
PATH
|
|
2
|
+
remote: .
|
|
3
|
+
specs:
|
|
4
|
+
swagger_aem (1.2.1)
|
|
5
|
+
json (~> 2.1, >= 2.1.0)
|
|
6
|
+
typhoeus (~> 1.0, >= 1.0.1)
|
|
7
|
+
|
|
8
|
+
GEM
|
|
9
|
+
remote: https://rubygems.org/
|
|
10
|
+
specs:
|
|
11
|
+
ZenTest (4.11.1)
|
|
12
|
+
addressable (2.5.2)
|
|
13
|
+
public_suffix (>= 2.0.2, < 4.0)
|
|
14
|
+
autotest (4.4.6)
|
|
15
|
+
ZenTest (>= 4.4.1)
|
|
16
|
+
autotest-fsevent (0.2.13)
|
|
17
|
+
sys-uname
|
|
18
|
+
autotest-growl (0.2.16)
|
|
19
|
+
autotest-rails-pure (4.1.2)
|
|
20
|
+
crack (0.4.3)
|
|
21
|
+
safe_yaml (~> 1.0.0)
|
|
22
|
+
diff-lcs (1.3)
|
|
23
|
+
ethon (0.11.0)
|
|
24
|
+
ffi (>= 1.3.0)
|
|
25
|
+
ffi (1.9.23)
|
|
26
|
+
hashdiff (0.3.7)
|
|
27
|
+
json (2.1.0)
|
|
28
|
+
public_suffix (3.0.2)
|
|
29
|
+
rake (12.0.0)
|
|
30
|
+
rspec (3.7.0)
|
|
31
|
+
rspec-core (~> 3.7.0)
|
|
32
|
+
rspec-expectations (~> 3.7.0)
|
|
33
|
+
rspec-mocks (~> 3.7.0)
|
|
34
|
+
rspec-core (3.7.1)
|
|
35
|
+
rspec-support (~> 3.7.0)
|
|
36
|
+
rspec-expectations (3.7.0)
|
|
37
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
38
|
+
rspec-support (~> 3.7.0)
|
|
39
|
+
rspec-mocks (3.7.0)
|
|
40
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
41
|
+
rspec-support (~> 3.7.0)
|
|
42
|
+
rspec-support (3.7.1)
|
|
43
|
+
safe_yaml (1.0.4)
|
|
44
|
+
sys-uname (1.0.3)
|
|
45
|
+
ffi (>= 1.0.0)
|
|
46
|
+
typhoeus (1.3.0)
|
|
47
|
+
ethon (>= 0.9.0)
|
|
48
|
+
vcr (3.0.3)
|
|
49
|
+
webmock (1.24.6)
|
|
50
|
+
addressable (>= 2.3.6)
|
|
51
|
+
crack (>= 0.3.2)
|
|
52
|
+
hashdiff
|
|
53
|
+
|
|
54
|
+
PLATFORMS
|
|
55
|
+
ruby
|
|
56
|
+
|
|
57
|
+
DEPENDENCIES
|
|
58
|
+
autotest (~> 4.4, >= 4.4.6)
|
|
59
|
+
autotest-fsevent (~> 0.2, >= 0.2.12)
|
|
60
|
+
autotest-growl (~> 0.2, >= 0.2.16)
|
|
61
|
+
autotest-rails-pure (~> 4.1, >= 4.1.2)
|
|
62
|
+
rake (~> 12.0.0)
|
|
63
|
+
rspec (~> 3.6, >= 3.6.0)
|
|
64
|
+
swagger_aem!
|
|
65
|
+
vcr (~> 3.0, >= 3.0.1)
|
|
66
|
+
webmock (~> 1.24, >= 1.24.3)
|
|
67
|
+
|
|
68
|
+
BUNDLED WITH
|
|
69
|
+
1.16.1
|
data/README.md
CHANGED
|
@@ -6,8 +6,8 @@ Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
|
6
6
|
|
|
7
7
|
This SDK is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
|
|
8
8
|
|
|
9
|
-
- API version: 1.
|
|
10
|
-
- Package version: 1.2.
|
|
9
|
+
- API version: 1.3.0
|
|
10
|
+
- Package version: 1.2.1
|
|
11
11
|
- Build package: io.swagger.codegen.languages.RubyClientCodegen
|
|
12
12
|
For more information, please visit [http://shinesolutions.com](http://shinesolutions.com)
|
|
13
13
|
|
|
@@ -24,15 +24,15 @@ gem build swagger_aem.gemspec
|
|
|
24
24
|
Then either install the gem locally:
|
|
25
25
|
|
|
26
26
|
```shell
|
|
27
|
-
gem install ./swagger_aem-1.2.
|
|
27
|
+
gem install ./swagger_aem-1.2.1.gem
|
|
28
28
|
```
|
|
29
|
-
(for development, run `gem install --dev ./swagger_aem-1.2.
|
|
29
|
+
(for development, run `gem install --dev ./swagger_aem-1.2.1.gem` to install the development dependencies)
|
|
30
30
|
|
|
31
31
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
|
32
32
|
|
|
33
33
|
Finally add this to the Gemfile:
|
|
34
34
|
|
|
35
|
-
gem 'swagger_aem', '~> 1.2.
|
|
35
|
+
gem 'swagger_aem', '~> 1.2.1'
|
|
36
36
|
|
|
37
37
|
### Install from Git
|
|
38
38
|
|
|
@@ -87,6 +87,7 @@ Class | Method | HTTP request | Description
|
|
|
87
87
|
*SwaggerAemClient::ConsoleApi* | [**post_jmx_repository**](docs/ConsoleApi.md#post_jmx_repository) | **POST** /system/console/jmx/com.adobe.granite:type=Repository/op/{action} |
|
|
88
88
|
*SwaggerAemClient::CqApi* | [**get_login_page**](docs/CqApi.md#get_login_page) | **GET** /libs/granite/core/content/login.html |
|
|
89
89
|
*SwaggerAemClient::CqApi* | [**post_cq_actions**](docs/CqApi.md#post_cq_actions) | **POST** /.cqactions.html |
|
|
90
|
+
*SwaggerAemClient::CrxApi* | [**get_crxde_status**](docs/CrxApi.md#get_crxde_status) | **GET** /crx/server/crx.default/jcr:root/.1.json |
|
|
90
91
|
*SwaggerAemClient::CrxApi* | [**get_install_status**](docs/CrxApi.md#get_install_status) | **GET** /crx/packmgr/installstatus.jsp |
|
|
91
92
|
*SwaggerAemClient::CrxApi* | [**post_package_service**](docs/CrxApi.md#post_package_service) | **POST** /crx/packmgr/service.jsp |
|
|
92
93
|
*SwaggerAemClient::CrxApi* | [**post_package_service_json**](docs/CrxApi.md#post_package_service_json) | **POST** /crx/packmgr/service/.json/{path} |
|
data/docs/CrxApi.md
CHANGED
|
@@ -4,6 +4,7 @@ All URIs are relative to *http://localhost*
|
|
|
4
4
|
|
|
5
5
|
Method | HTTP request | Description
|
|
6
6
|
------------- | ------------- | -------------
|
|
7
|
+
[**get_crxde_status**](CrxApi.md#get_crxde_status) | **GET** /crx/server/crx.default/jcr:root/.1.json |
|
|
7
8
|
[**get_install_status**](CrxApi.md#get_install_status) | **GET** /crx/packmgr/installstatus.jsp |
|
|
8
9
|
[**post_package_service**](CrxApi.md#post_package_service) | **POST** /crx/packmgr/service.jsp |
|
|
9
10
|
[**post_package_service_json**](CrxApi.md#post_package_service_json) | **POST** /crx/packmgr/service/.json/{path} |
|
|
@@ -11,6 +12,50 @@ Method | HTTP request | Description
|
|
|
11
12
|
[**post_set_password**](CrxApi.md#post_set_password) | **POST** /crx/explorer/ui/setpassword.jsp |
|
|
12
13
|
|
|
13
14
|
|
|
15
|
+
# **get_crxde_status**
|
|
16
|
+
> String get_crxde_status
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Example
|
|
21
|
+
```ruby
|
|
22
|
+
# load the gem
|
|
23
|
+
require 'swagger_aem'
|
|
24
|
+
# setup authorization
|
|
25
|
+
SwaggerAemClient.configure do |config|
|
|
26
|
+
# Configure HTTP basic authorization: aemAuth
|
|
27
|
+
config.username = 'YOUR USERNAME'
|
|
28
|
+
config.password = 'YOUR PASSWORD'
|
|
29
|
+
end
|
|
30
|
+
|
|
31
|
+
api_instance = SwaggerAemClient::CrxApi.new
|
|
32
|
+
|
|
33
|
+
begin
|
|
34
|
+
result = api_instance.get_crxde_status
|
|
35
|
+
p result
|
|
36
|
+
rescue SwaggerAemClient::ApiError => e
|
|
37
|
+
puts "Exception when calling CrxApi->get_crxde_status: #{e}"
|
|
38
|
+
end
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
### Parameters
|
|
42
|
+
This endpoint does not need any parameter.
|
|
43
|
+
|
|
44
|
+
### Return type
|
|
45
|
+
|
|
46
|
+
**String**
|
|
47
|
+
|
|
48
|
+
### Authorization
|
|
49
|
+
|
|
50
|
+
[aemAuth](../README.md#aemAuth)
|
|
51
|
+
|
|
52
|
+
### HTTP request headers
|
|
53
|
+
|
|
54
|
+
- **Content-Type**: Not defined
|
|
55
|
+
- **Accept**: plain/text
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
|
|
14
59
|
# **get_install_status**
|
|
15
60
|
> InstallStatus get_install_status
|
|
16
61
|
|
data/docs/SlingApi.md
CHANGED
|
@@ -414,7 +414,7 @@ api_instance = SwaggerAemClient::SlingApi.new
|
|
|
414
414
|
|
|
415
415
|
path = "path_example" # String |
|
|
416
416
|
|
|
417
|
-
p_limit =
|
|
417
|
+
p_limit = 8.14 # Float |
|
|
418
418
|
|
|
419
419
|
_1_property = "_1_property_example" # String |
|
|
420
420
|
|
|
@@ -489,7 +489,7 @@ opts = {
|
|
|
489
489
|
jcrcontentlog_level: "jcrcontentlog_level_example", # String |
|
|
490
490
|
jcrcontentno_status_update: true, # BOOLEAN |
|
|
491
491
|
jcrcontentno_versioning: true, # BOOLEAN |
|
|
492
|
-
jcrcontentprotocol_connect_timeout:
|
|
492
|
+
jcrcontentprotocol_connect_timeout: 8.14, # Float |
|
|
493
493
|
jcrcontentprotocol_http_connection_closed: true, # BOOLEAN |
|
|
494
494
|
jcrcontentprotocol_http_expired: "jcrcontentprotocol_http_expired_example", # String |
|
|
495
495
|
jcrcontentprotocol_http_headers: ["jcrcontentprotocol_http_headers_example"], # Array<String> |
|
|
@@ -497,17 +497,17 @@ opts = {
|
|
|
497
497
|
jcrcontentprotocol_http_method: "jcrcontentprotocol_http_method_example", # String |
|
|
498
498
|
jcrcontentprotocol_https_relaxed: true, # BOOLEAN |
|
|
499
499
|
jcrcontentprotocol_interface: "jcrcontentprotocol_interface_example", # String |
|
|
500
|
-
jcrcontentprotocol_socket_timeout:
|
|
500
|
+
jcrcontentprotocol_socket_timeout: 8.14, # Float |
|
|
501
501
|
jcrcontentprotocol_version: "jcrcontentprotocol_version_example", # String |
|
|
502
502
|
jcrcontentproxy_ntlm_domain: "jcrcontentproxy_ntlm_domain_example", # String |
|
|
503
503
|
jcrcontentproxy_ntlm_host: "jcrcontentproxy_ntlm_host_example", # String |
|
|
504
504
|
jcrcontentproxy_host: "jcrcontentproxy_host_example", # String |
|
|
505
505
|
jcrcontentproxy_password: "jcrcontentproxy_password_example", # String |
|
|
506
|
-
jcrcontentproxy_port:
|
|
506
|
+
jcrcontentproxy_port: 8.14, # Float |
|
|
507
507
|
jcrcontentproxy_user: "jcrcontentproxy_user_example", # String |
|
|
508
|
-
jcrcontentqueue_batch_max_size:
|
|
508
|
+
jcrcontentqueue_batch_max_size: 8.14, # Float |
|
|
509
509
|
jcrcontentqueue_batch_mode: "jcrcontentqueue_batch_mode_example", # String |
|
|
510
|
-
jcrcontentqueue_batch_wait_time:
|
|
510
|
+
jcrcontentqueue_batch_wait_time: 8.14, # Float |
|
|
511
511
|
jcrcontentretry_delay: "jcrcontentretry_delay_example", # String |
|
|
512
512
|
jcrcontentreverse_replication: true, # BOOLEAN |
|
|
513
513
|
jcrcontentserialization_type: "jcrcontentserialization_type_example", # String |
|
|
@@ -1081,7 +1081,7 @@ api_instance = SwaggerAemClient::SlingApi.new
|
|
|
1081
1081
|
|
|
1082
1082
|
path = "path_example" # String |
|
|
1083
1083
|
|
|
1084
|
-
p_limit =
|
|
1084
|
+
p_limit = 8.14 # Float |
|
|
1085
1085
|
|
|
1086
1086
|
_1_property = "_1_property_example" # String |
|
|
1087
1087
|
|
data/git_push.sh
CHANGED
|
@@ -39,7 +39,7 @@ git_remote=`git remote`
|
|
|
39
39
|
if [ "$git_remote" = "" ]; then # git remote not defined
|
|
40
40
|
|
|
41
41
|
if [ "$GIT_TOKEN" = "" ]; then
|
|
42
|
-
echo "[INFO] \$GIT_TOKEN (environment variable) is not set. Using the git
|
|
42
|
+
echo "[INFO] \$GIT_TOKEN (environment variable) is not set. Using the git credential in your environment."
|
|
43
43
|
git remote add origin https://github.com/${git_user_id}/${git_repo_id}.git
|
|
44
44
|
else
|
|
45
45
|
git remote add origin https://${git_user_id}:${GIT_TOKEN}@github.com/${git_user_id}/${git_repo_id}.git
|
data/lib/swagger_aem.rb
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 1.
|
|
6
|
+
OpenAPI spec version: 1.3.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
-
Swagger Codegen version: 2.3.
|
|
9
|
+
Swagger Codegen version: 2.3.1
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 1.
|
|
6
|
+
OpenAPI spec version: 1.3.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
-
Swagger Codegen version: 2.3.
|
|
9
|
+
Swagger Codegen version: 2.3.1
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 1.
|
|
6
|
+
OpenAPI spec version: 1.3.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
-
Swagger Codegen version: 2.3.
|
|
9
|
+
Swagger Codegen version: 2.3.1
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 1.
|
|
6
|
+
OpenAPI spec version: 1.3.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
-
Swagger Codegen version: 2.3.
|
|
9
|
+
Swagger Codegen version: 2.3.1
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
@@ -20,6 +20,53 @@ module SwaggerAemClient
|
|
|
20
20
|
@api_client = api_client
|
|
21
21
|
end
|
|
22
22
|
|
|
23
|
+
#
|
|
24
|
+
#
|
|
25
|
+
# @param [Hash] opts the optional parameters
|
|
26
|
+
# @return [String]
|
|
27
|
+
def get_crxde_status(opts = {})
|
|
28
|
+
data, _status_code, _headers = get_crxde_status_with_http_info(opts)
|
|
29
|
+
return data
|
|
30
|
+
end
|
|
31
|
+
|
|
32
|
+
#
|
|
33
|
+
#
|
|
34
|
+
# @param [Hash] opts the optional parameters
|
|
35
|
+
# @return [Array<(String, Fixnum, Hash)>] String data, response status code and response headers
|
|
36
|
+
def get_crxde_status_with_http_info(opts = {})
|
|
37
|
+
if @api_client.config.debugging
|
|
38
|
+
@api_client.config.logger.debug "Calling API: CrxApi.get_crxde_status ..."
|
|
39
|
+
end
|
|
40
|
+
# resource path
|
|
41
|
+
local_var_path = "/crx/server/crx.default/jcr:root/.1.json"
|
|
42
|
+
|
|
43
|
+
# query parameters
|
|
44
|
+
query_params = {}
|
|
45
|
+
|
|
46
|
+
# header parameters
|
|
47
|
+
header_params = {}
|
|
48
|
+
# HTTP header 'Accept' (if needed)
|
|
49
|
+
header_params['Accept'] = @api_client.select_header_accept(['plain/text'])
|
|
50
|
+
|
|
51
|
+
# form parameters
|
|
52
|
+
form_params = {}
|
|
53
|
+
|
|
54
|
+
# http body (model)
|
|
55
|
+
post_body = nil
|
|
56
|
+
auth_names = ['aemAuth']
|
|
57
|
+
data, status_code, headers = @api_client.call_api(:GET, local_var_path,
|
|
58
|
+
:header_params => header_params,
|
|
59
|
+
:query_params => query_params,
|
|
60
|
+
:form_params => form_params,
|
|
61
|
+
:body => post_body,
|
|
62
|
+
:auth_names => auth_names,
|
|
63
|
+
:return_type => 'String')
|
|
64
|
+
if @api_client.config.debugging
|
|
65
|
+
@api_client.config.logger.debug "API called: CrxApi#get_crxde_status\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
|
66
|
+
end
|
|
67
|
+
return data, status_code, headers
|
|
68
|
+
end
|
|
69
|
+
|
|
23
70
|
#
|
|
24
71
|
#
|
|
25
72
|
# @param [Hash] opts the optional parameters
|
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 1.
|
|
6
|
+
OpenAPI spec version: 1.3.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
-
Swagger Codegen version: 2.3.
|
|
9
|
+
Swagger Codegen version: 2.3.1
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 1.
|
|
6
|
+
OpenAPI spec version: 1.3.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
-
Swagger Codegen version: 2.3.
|
|
9
|
+
Swagger Codegen version: 2.3.1
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 1.
|
|
6
|
+
OpenAPI spec version: 1.3.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
-
Swagger Codegen version: 2.3.
|
|
9
|
+
Swagger Codegen version: 2.3.1
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 1.
|
|
6
|
+
OpenAPI spec version: 1.3.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
-
Swagger Codegen version: 2.3.
|
|
9
|
+
Swagger Codegen version: 2.3.1
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 1.
|
|
6
|
+
OpenAPI spec version: 1.3.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
-
Swagger Codegen version: 2.3.
|
|
9
|
+
Swagger Codegen version: 2.3.1
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 1.
|
|
6
|
+
OpenAPI spec version: 1.3.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
-
Swagger Codegen version: 2.3.
|
|
9
|
+
Swagger Codegen version: 2.3.1
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
@@ -47,7 +47,7 @@ module SwaggerAemClient
|
|
|
47
47
|
end
|
|
48
48
|
|
|
49
49
|
# Show invalid properties with the reasons. Usually used together with valid?
|
|
50
|
-
# @return Array for valid
|
|
50
|
+
# @return Array for valid properties with the reasons
|
|
51
51
|
def list_invalid_properties
|
|
52
52
|
invalid_properties = Array.new
|
|
53
53
|
return invalid_properties
|
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 1.
|
|
6
|
+
OpenAPI spec version: 1.3.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
-
Swagger Codegen version: 2.3.
|
|
9
|
+
Swagger Codegen version: 2.3.1
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
@@ -55,7 +55,7 @@ module SwaggerAemClient
|
|
|
55
55
|
end
|
|
56
56
|
|
|
57
57
|
# Show invalid properties with the reasons. Usually used together with valid?
|
|
58
|
-
# @return Array for valid
|
|
58
|
+
# @return Array for valid properties with the reasons
|
|
59
59
|
def list_invalid_properties
|
|
60
60
|
invalid_properties = Array.new
|
|
61
61
|
return invalid_properties
|
data/lib/swagger_aem/version.rb
CHANGED
|
@@ -3,13 +3,13 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 1.
|
|
6
|
+
OpenAPI spec version: 1.3.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
-
Swagger Codegen version: 2.3.
|
|
9
|
+
Swagger Codegen version: 2.3.1
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
13
13
|
module SwaggerAemClient
|
|
14
|
-
VERSION = "1.2.
|
|
14
|
+
VERSION = "1.2.1"
|
|
15
15
|
end
|
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 1.
|
|
6
|
+
OpenAPI spec version: 1.3.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
-
Swagger Codegen version: 2.3.
|
|
9
|
+
Swagger Codegen version: 2.3.1
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
data/spec/api/cq_api_spec.rb
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 1.
|
|
6
|
+
OpenAPI spec version: 1.3.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
-
Swagger Codegen version: 2.3.
|
|
9
|
+
Swagger Codegen version: 2.3.1
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
data/spec/api/crx_api_spec.rb
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 1.
|
|
6
|
+
OpenAPI spec version: 1.3.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
-
Swagger Codegen version: 2.3.
|
|
9
|
+
Swagger Codegen version: 2.3.1
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
@@ -32,6 +32,17 @@ describe 'CrxApi' do
|
|
|
32
32
|
end
|
|
33
33
|
end
|
|
34
34
|
|
|
35
|
+
# unit tests for get_crxde_status
|
|
36
|
+
#
|
|
37
|
+
#
|
|
38
|
+
# @param [Hash] opts the optional parameters
|
|
39
|
+
# @return [String]
|
|
40
|
+
describe 'get_crxde_status test' do
|
|
41
|
+
it "should work" do
|
|
42
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
43
|
+
end
|
|
44
|
+
end
|
|
45
|
+
|
|
35
46
|
# unit tests for get_install_status
|
|
36
47
|
#
|
|
37
48
|
#
|
data/spec/api/custom_api_spec.rb
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 1.
|
|
6
|
+
OpenAPI spec version: 1.3.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
-
Swagger Codegen version: 2.3.
|
|
9
|
+
Swagger Codegen version: 2.3.1
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
data/spec/api/sling_api_spec.rb
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 1.
|
|
6
|
+
OpenAPI spec version: 1.3.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
-
Swagger Codegen version: 2.3.
|
|
9
|
+
Swagger Codegen version: 2.3.1
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
data/spec/api_client_spec.rb
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 1.
|
|
6
|
+
OpenAPI spec version: 1.3.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
-
Swagger Codegen version: 2.3.
|
|
9
|
+
Swagger Codegen version: 2.3.1
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
data/spec/configuration_spec.rb
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 1.
|
|
6
|
+
OpenAPI spec version: 1.3.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
-
Swagger Codegen version: 2.3.
|
|
9
|
+
Swagger Codegen version: 2.3.1
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 1.
|
|
6
|
+
OpenAPI spec version: 1.3.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
-
Swagger Codegen version: 2.3.
|
|
9
|
+
Swagger Codegen version: 2.3.1
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 1.
|
|
6
|
+
OpenAPI spec version: 1.3.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
-
Swagger Codegen version: 2.3.
|
|
9
|
+
Swagger Codegen version: 2.3.1
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
data/spec/spec_helper.rb
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 1.
|
|
6
|
+
OpenAPI spec version: 1.3.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
-
Swagger Codegen version: 2.3.
|
|
9
|
+
Swagger Codegen version: 2.3.1
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
data/swagger_aem.gemspec
CHANGED
|
@@ -5,10 +5,10 @@
|
|
|
5
5
|
|
|
6
6
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
7
7
|
|
|
8
|
-
OpenAPI spec version: 1.
|
|
8
|
+
OpenAPI spec version: 1.3.0
|
|
9
9
|
Contact: opensource@shinesolutions.com
|
|
10
10
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
11
|
-
Swagger Codegen version: 2.3.
|
|
11
|
+
Swagger Codegen version: 2.3.1
|
|
12
12
|
|
|
13
13
|
=end
|
|
14
14
|
|
metadata
CHANGED
|
@@ -1,193 +1,193 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: swagger_aem
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.2.
|
|
4
|
+
version: 1.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Shine Solutions
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2018-03-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: typhoeus
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- - ~>
|
|
17
|
+
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
19
|
version: '1.0'
|
|
20
|
-
- -
|
|
20
|
+
- - ">="
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
22
|
version: 1.0.1
|
|
23
23
|
type: :runtime
|
|
24
24
|
prerelease: false
|
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
26
26
|
requirements:
|
|
27
|
-
- - ~>
|
|
27
|
+
- - "~>"
|
|
28
28
|
- !ruby/object:Gem::Version
|
|
29
29
|
version: '1.0'
|
|
30
|
-
- -
|
|
30
|
+
- - ">="
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
32
|
version: 1.0.1
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: json
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
|
36
36
|
requirements:
|
|
37
|
-
- - ~>
|
|
37
|
+
- - "~>"
|
|
38
38
|
- !ruby/object:Gem::Version
|
|
39
39
|
version: '2.1'
|
|
40
|
-
- -
|
|
40
|
+
- - ">="
|
|
41
41
|
- !ruby/object:Gem::Version
|
|
42
42
|
version: 2.1.0
|
|
43
43
|
type: :runtime
|
|
44
44
|
prerelease: false
|
|
45
45
|
version_requirements: !ruby/object:Gem::Requirement
|
|
46
46
|
requirements:
|
|
47
|
-
- - ~>
|
|
47
|
+
- - "~>"
|
|
48
48
|
- !ruby/object:Gem::Version
|
|
49
49
|
version: '2.1'
|
|
50
|
-
- -
|
|
50
|
+
- - ">="
|
|
51
51
|
- !ruby/object:Gem::Version
|
|
52
52
|
version: 2.1.0
|
|
53
53
|
- !ruby/object:Gem::Dependency
|
|
54
54
|
name: rspec
|
|
55
55
|
requirement: !ruby/object:Gem::Requirement
|
|
56
56
|
requirements:
|
|
57
|
-
- - ~>
|
|
57
|
+
- - "~>"
|
|
58
58
|
- !ruby/object:Gem::Version
|
|
59
59
|
version: '3.6'
|
|
60
|
-
- -
|
|
60
|
+
- - ">="
|
|
61
61
|
- !ruby/object:Gem::Version
|
|
62
62
|
version: 3.6.0
|
|
63
63
|
type: :development
|
|
64
64
|
prerelease: false
|
|
65
65
|
version_requirements: !ruby/object:Gem::Requirement
|
|
66
66
|
requirements:
|
|
67
|
-
- - ~>
|
|
67
|
+
- - "~>"
|
|
68
68
|
- !ruby/object:Gem::Version
|
|
69
69
|
version: '3.6'
|
|
70
|
-
- -
|
|
70
|
+
- - ">="
|
|
71
71
|
- !ruby/object:Gem::Version
|
|
72
72
|
version: 3.6.0
|
|
73
73
|
- !ruby/object:Gem::Dependency
|
|
74
74
|
name: vcr
|
|
75
75
|
requirement: !ruby/object:Gem::Requirement
|
|
76
76
|
requirements:
|
|
77
|
-
- - ~>
|
|
77
|
+
- - "~>"
|
|
78
78
|
- !ruby/object:Gem::Version
|
|
79
79
|
version: '3.0'
|
|
80
|
-
- -
|
|
80
|
+
- - ">="
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
82
|
version: 3.0.1
|
|
83
83
|
type: :development
|
|
84
84
|
prerelease: false
|
|
85
85
|
version_requirements: !ruby/object:Gem::Requirement
|
|
86
86
|
requirements:
|
|
87
|
-
- - ~>
|
|
87
|
+
- - "~>"
|
|
88
88
|
- !ruby/object:Gem::Version
|
|
89
89
|
version: '3.0'
|
|
90
|
-
- -
|
|
90
|
+
- - ">="
|
|
91
91
|
- !ruby/object:Gem::Version
|
|
92
92
|
version: 3.0.1
|
|
93
93
|
- !ruby/object:Gem::Dependency
|
|
94
94
|
name: webmock
|
|
95
95
|
requirement: !ruby/object:Gem::Requirement
|
|
96
96
|
requirements:
|
|
97
|
-
- - ~>
|
|
97
|
+
- - "~>"
|
|
98
98
|
- !ruby/object:Gem::Version
|
|
99
99
|
version: '1.24'
|
|
100
|
-
- -
|
|
100
|
+
- - ">="
|
|
101
101
|
- !ruby/object:Gem::Version
|
|
102
102
|
version: 1.24.3
|
|
103
103
|
type: :development
|
|
104
104
|
prerelease: false
|
|
105
105
|
version_requirements: !ruby/object:Gem::Requirement
|
|
106
106
|
requirements:
|
|
107
|
-
- - ~>
|
|
107
|
+
- - "~>"
|
|
108
108
|
- !ruby/object:Gem::Version
|
|
109
109
|
version: '1.24'
|
|
110
|
-
- -
|
|
110
|
+
- - ">="
|
|
111
111
|
- !ruby/object:Gem::Version
|
|
112
112
|
version: 1.24.3
|
|
113
113
|
- !ruby/object:Gem::Dependency
|
|
114
114
|
name: autotest
|
|
115
115
|
requirement: !ruby/object:Gem::Requirement
|
|
116
116
|
requirements:
|
|
117
|
-
- - ~>
|
|
117
|
+
- - "~>"
|
|
118
118
|
- !ruby/object:Gem::Version
|
|
119
119
|
version: '4.4'
|
|
120
|
-
- -
|
|
120
|
+
- - ">="
|
|
121
121
|
- !ruby/object:Gem::Version
|
|
122
122
|
version: 4.4.6
|
|
123
123
|
type: :development
|
|
124
124
|
prerelease: false
|
|
125
125
|
version_requirements: !ruby/object:Gem::Requirement
|
|
126
126
|
requirements:
|
|
127
|
-
- - ~>
|
|
127
|
+
- - "~>"
|
|
128
128
|
- !ruby/object:Gem::Version
|
|
129
129
|
version: '4.4'
|
|
130
|
-
- -
|
|
130
|
+
- - ">="
|
|
131
131
|
- !ruby/object:Gem::Version
|
|
132
132
|
version: 4.4.6
|
|
133
133
|
- !ruby/object:Gem::Dependency
|
|
134
134
|
name: autotest-rails-pure
|
|
135
135
|
requirement: !ruby/object:Gem::Requirement
|
|
136
136
|
requirements:
|
|
137
|
-
- - ~>
|
|
137
|
+
- - "~>"
|
|
138
138
|
- !ruby/object:Gem::Version
|
|
139
139
|
version: '4.1'
|
|
140
|
-
- -
|
|
140
|
+
- - ">="
|
|
141
141
|
- !ruby/object:Gem::Version
|
|
142
142
|
version: 4.1.2
|
|
143
143
|
type: :development
|
|
144
144
|
prerelease: false
|
|
145
145
|
version_requirements: !ruby/object:Gem::Requirement
|
|
146
146
|
requirements:
|
|
147
|
-
- - ~>
|
|
147
|
+
- - "~>"
|
|
148
148
|
- !ruby/object:Gem::Version
|
|
149
149
|
version: '4.1'
|
|
150
|
-
- -
|
|
150
|
+
- - ">="
|
|
151
151
|
- !ruby/object:Gem::Version
|
|
152
152
|
version: 4.1.2
|
|
153
153
|
- !ruby/object:Gem::Dependency
|
|
154
154
|
name: autotest-growl
|
|
155
155
|
requirement: !ruby/object:Gem::Requirement
|
|
156
156
|
requirements:
|
|
157
|
-
- - ~>
|
|
157
|
+
- - "~>"
|
|
158
158
|
- !ruby/object:Gem::Version
|
|
159
159
|
version: '0.2'
|
|
160
|
-
- -
|
|
160
|
+
- - ">="
|
|
161
161
|
- !ruby/object:Gem::Version
|
|
162
162
|
version: 0.2.16
|
|
163
163
|
type: :development
|
|
164
164
|
prerelease: false
|
|
165
165
|
version_requirements: !ruby/object:Gem::Requirement
|
|
166
166
|
requirements:
|
|
167
|
-
- - ~>
|
|
167
|
+
- - "~>"
|
|
168
168
|
- !ruby/object:Gem::Version
|
|
169
169
|
version: '0.2'
|
|
170
|
-
- -
|
|
170
|
+
- - ">="
|
|
171
171
|
- !ruby/object:Gem::Version
|
|
172
172
|
version: 0.2.16
|
|
173
173
|
- !ruby/object:Gem::Dependency
|
|
174
174
|
name: autotest-fsevent
|
|
175
175
|
requirement: !ruby/object:Gem::Requirement
|
|
176
176
|
requirements:
|
|
177
|
-
- - ~>
|
|
177
|
+
- - "~>"
|
|
178
178
|
- !ruby/object:Gem::Version
|
|
179
179
|
version: '0.2'
|
|
180
|
-
- -
|
|
180
|
+
- - ">="
|
|
181
181
|
- !ruby/object:Gem::Version
|
|
182
182
|
version: 0.2.12
|
|
183
183
|
type: :development
|
|
184
184
|
prerelease: false
|
|
185
185
|
version_requirements: !ruby/object:Gem::Requirement
|
|
186
186
|
requirements:
|
|
187
|
-
- - ~>
|
|
187
|
+
- - "~>"
|
|
188
188
|
- !ruby/object:Gem::Version
|
|
189
189
|
version: '0.2'
|
|
190
|
-
- -
|
|
190
|
+
- - ">="
|
|
191
191
|
- !ruby/object:Gem::Version
|
|
192
192
|
version: 0.2.12
|
|
193
193
|
description: Swagger AEM is an OpenAPI specification for Adobe Experience Manager
|
|
@@ -199,6 +199,7 @@ extensions: []
|
|
|
199
199
|
extra_rdoc_files: []
|
|
200
200
|
files:
|
|
201
201
|
- Gemfile
|
|
202
|
+
- Gemfile.lock
|
|
202
203
|
- README.md
|
|
203
204
|
- Rakefile
|
|
204
205
|
- docs/ConsoleApi.md
|
|
@@ -242,17 +243,17 @@ require_paths:
|
|
|
242
243
|
- lib
|
|
243
244
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
244
245
|
requirements:
|
|
245
|
-
- -
|
|
246
|
+
- - ">="
|
|
246
247
|
- !ruby/object:Gem::Version
|
|
247
248
|
version: '2.0'
|
|
248
249
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
249
250
|
requirements:
|
|
250
|
-
- -
|
|
251
|
+
- - ">="
|
|
251
252
|
- !ruby/object:Gem::Version
|
|
252
253
|
version: '0'
|
|
253
254
|
requirements: []
|
|
254
255
|
rubyforge_project:
|
|
255
|
-
rubygems_version: 2.
|
|
256
|
+
rubygems_version: 2.6.14
|
|
256
257
|
signing_key:
|
|
257
258
|
specification_version: 4
|
|
258
259
|
summary: Adobe Experience Manager (AEM) API Ruby Gem
|