swagger_aem 2.0.0 → 2.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/Gemfile.lock +2 -2
- data/README.md +5 -4
- data/docs/SlingApi.md +68 -7
- data/git_push.sh +1 -1
- data/lib/swagger_aem.rb +1 -1
- data/lib/swagger_aem/api/console_api.rb +1 -1
- data/lib/swagger_aem/api/cq_api.rb +1 -1
- data/lib/swagger_aem/api/crx_api.rb +1 -1
- data/lib/swagger_aem/api/custom_api.rb +1 -1
- data/lib/swagger_aem/api/sling_api.rb +70 -1
- data/lib/swagger_aem/api_client.rb +1 -1
- data/lib/swagger_aem/api_error.rb +1 -1
- data/lib/swagger_aem/configuration.rb +1 -1
- data/lib/swagger_aem/models/install_status.rb +2 -2
- data/lib/swagger_aem/models/install_status_status.rb +2 -2
- data/lib/swagger_aem/version.rb +2 -2
- data/spec/api/console_api_spec.rb +1 -1
- data/spec/api/cq_api_spec.rb +1 -1
- data/spec/api/crx_api_spec.rb +1 -1
- data/spec/api/custom_api_spec.rb +1 -1
- data/spec/api/sling_api_spec.rb +17 -1
- data/spec/api_client_spec.rb +1 -1
- data/spec/configuration_spec.rb +1 -1
- data/spec/models/install_status_spec.rb +1 -1
- data/spec/models/install_status_status_spec.rb +1 -1
- data/spec/spec_helper.rb +1 -1
- data/swagger_aem.gemspec +2 -2
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cb6313a592d6ef82f695de892ae7970316f869f2
|
|
4
|
+
data.tar.gz: 9cf83de476eaad5f3f6546b6975b744a67e2cf95
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d519135fd30a2266b3b2f07da42402ea2c9926b5794844ac3af7d5761e864de76ebbe4f46b2b91393b810ad716027fc8b99c02cc887e748af5ba611874bfea94
|
|
7
|
+
data.tar.gz: 6830c2faa5173d76ba84293c563838d3c288ecd60309dcbaf28f1e332c5a9b33f110eba84762ababb3837d439d8ec56abe76167207b0811d1ad4a711adcbf6b2
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -7,7 +7,7 @@ Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
|
7
7
|
This SDK is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
|
|
8
8
|
|
|
9
9
|
- API version: 2.0.0
|
|
10
|
-
- Package version: 2.
|
|
10
|
+
- Package version: 2.1.0
|
|
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-2.
|
|
27
|
+
gem install ./swagger_aem-2.1.0.gem
|
|
28
28
|
```
|
|
29
|
-
(for development, run `gem install --dev ./swagger_aem-2.
|
|
29
|
+
(for development, run `gem install --dev ./swagger_aem-2.1.0.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', '~> 2.
|
|
35
|
+
gem 'swagger_aem', '~> 2.1.0'
|
|
36
36
|
|
|
37
37
|
### Install from Git
|
|
38
38
|
|
|
@@ -110,6 +110,7 @@ Class | Method | HTTP request | Description
|
|
|
110
110
|
*SwaggerAemClient::SlingApi* | [**post_config_apache_sling_dav_ex_servlet**](docs/SlingApi.md#post_config_apache_sling_dav_ex_servlet) | **POST** /apps/system/config/org.apache.sling.jcr.davex.impl.servlets.SlingDavExServlet |
|
|
111
111
|
*SwaggerAemClient::SlingApi* | [**post_config_apache_sling_get_servlet**](docs/SlingApi.md#post_config_apache_sling_get_servlet) | **POST** /apps/system/config/org.apache.sling.servlets.get.DefaultGetServlet |
|
|
112
112
|
*SwaggerAemClient::SlingApi* | [**post_config_apache_sling_referrer_filter**](docs/SlingApi.md#post_config_apache_sling_referrer_filter) | **POST** /apps/system/config/org.apache.sling.security.impl.ReferrerFilter |
|
|
113
|
+
*SwaggerAemClient::SlingApi* | [**post_node**](docs/SlingApi.md#post_node) | **POST** /{path}/{name} |
|
|
113
114
|
*SwaggerAemClient::SlingApi* | [**post_node_rw**](docs/SlingApi.md#post_node_rw) | **POST** /{path}/{name}.rw.html |
|
|
114
115
|
*SwaggerAemClient::SlingApi* | [**post_path**](docs/SlingApi.md#post_path) | **POST** /{path}/ |
|
|
115
116
|
*SwaggerAemClient::SlingApi* | [**post_query**](docs/SlingApi.md#post_query) | **POST** /bin/querybuilder.json |
|
data/docs/SlingApi.md
CHANGED
|
@@ -18,6 +18,7 @@ Method | HTTP request | Description
|
|
|
18
18
|
[**post_config_apache_sling_dav_ex_servlet**](SlingApi.md#post_config_apache_sling_dav_ex_servlet) | **POST** /apps/system/config/org.apache.sling.jcr.davex.impl.servlets.SlingDavExServlet |
|
|
19
19
|
[**post_config_apache_sling_get_servlet**](SlingApi.md#post_config_apache_sling_get_servlet) | **POST** /apps/system/config/org.apache.sling.servlets.get.DefaultGetServlet |
|
|
20
20
|
[**post_config_apache_sling_referrer_filter**](SlingApi.md#post_config_apache_sling_referrer_filter) | **POST** /apps/system/config/org.apache.sling.security.impl.ReferrerFilter |
|
|
21
|
+
[**post_node**](SlingApi.md#post_node) | **POST** /{path}/{name} |
|
|
21
22
|
[**post_node_rw**](SlingApi.md#post_node_rw) | **POST** /{path}/{name}.rw.html |
|
|
22
23
|
[**post_path**](SlingApi.md#post_path) | **POST** /{path}/ |
|
|
23
24
|
[**post_query**](SlingApi.md#post_query) | **POST** /bin/querybuilder.json |
|
|
@@ -414,7 +415,7 @@ api_instance = SwaggerAemClient::SlingApi.new
|
|
|
414
415
|
|
|
415
416
|
path = "path_example" # String |
|
|
416
417
|
|
|
417
|
-
p_limit =
|
|
418
|
+
p_limit = 8.14 # Float |
|
|
418
419
|
|
|
419
420
|
_1_property = "_1_property_example" # String |
|
|
420
421
|
|
|
@@ -489,7 +490,7 @@ opts = {
|
|
|
489
490
|
jcrcontentlog_level: "jcrcontentlog_level_example", # String |
|
|
490
491
|
jcrcontentno_status_update: true, # BOOLEAN |
|
|
491
492
|
jcrcontentno_versioning: true, # BOOLEAN |
|
|
492
|
-
jcrcontentprotocol_connect_timeout:
|
|
493
|
+
jcrcontentprotocol_connect_timeout: 8.14, # Float |
|
|
493
494
|
jcrcontentprotocol_http_connection_closed: true, # BOOLEAN |
|
|
494
495
|
jcrcontentprotocol_http_expired: "jcrcontentprotocol_http_expired_example", # String |
|
|
495
496
|
jcrcontentprotocol_http_headers: ["jcrcontentprotocol_http_headers_example"], # Array<String> |
|
|
@@ -497,17 +498,17 @@ opts = {
|
|
|
497
498
|
jcrcontentprotocol_http_method: "jcrcontentprotocol_http_method_example", # String |
|
|
498
499
|
jcrcontentprotocol_https_relaxed: true, # BOOLEAN |
|
|
499
500
|
jcrcontentprotocol_interface: "jcrcontentprotocol_interface_example", # String |
|
|
500
|
-
jcrcontentprotocol_socket_timeout:
|
|
501
|
+
jcrcontentprotocol_socket_timeout: 8.14, # Float |
|
|
501
502
|
jcrcontentprotocol_version: "jcrcontentprotocol_version_example", # String |
|
|
502
503
|
jcrcontentproxy_ntlm_domain: "jcrcontentproxy_ntlm_domain_example", # String |
|
|
503
504
|
jcrcontentproxy_ntlm_host: "jcrcontentproxy_ntlm_host_example", # String |
|
|
504
505
|
jcrcontentproxy_host: "jcrcontentproxy_host_example", # String |
|
|
505
506
|
jcrcontentproxy_password: "jcrcontentproxy_password_example", # String |
|
|
506
|
-
jcrcontentproxy_port:
|
|
507
|
+
jcrcontentproxy_port: 8.14, # Float |
|
|
507
508
|
jcrcontentproxy_user: "jcrcontentproxy_user_example", # String |
|
|
508
|
-
jcrcontentqueue_batch_max_size:
|
|
509
|
+
jcrcontentqueue_batch_max_size: 8.14, # Float |
|
|
509
510
|
jcrcontentqueue_batch_mode: "jcrcontentqueue_batch_mode_example", # String |
|
|
510
|
-
jcrcontentqueue_batch_wait_time:
|
|
511
|
+
jcrcontentqueue_batch_wait_time: 8.14, # Float |
|
|
511
512
|
jcrcontentretry_delay: "jcrcontentretry_delay_example", # String |
|
|
512
513
|
jcrcontentreverse_replication: true, # BOOLEAN |
|
|
513
514
|
jcrcontentserialization_type: "jcrcontentserialization_type_example", # String |
|
|
@@ -950,6 +951,66 @@ nil (empty response body)
|
|
|
950
951
|
|
|
951
952
|
|
|
952
953
|
|
|
954
|
+
# **post_node**
|
|
955
|
+
> post_node(path, name, opts)
|
|
956
|
+
|
|
957
|
+
|
|
958
|
+
|
|
959
|
+
### Example
|
|
960
|
+
```ruby
|
|
961
|
+
# load the gem
|
|
962
|
+
require 'swagger_aem'
|
|
963
|
+
# setup authorization
|
|
964
|
+
SwaggerAemClient.configure do |config|
|
|
965
|
+
# Configure HTTP basic authorization: aemAuth
|
|
966
|
+
config.username = 'YOUR USERNAME'
|
|
967
|
+
config.password = 'YOUR PASSWORD'
|
|
968
|
+
end
|
|
969
|
+
|
|
970
|
+
api_instance = SwaggerAemClient::SlingApi.new
|
|
971
|
+
|
|
972
|
+
path = "path_example" # String |
|
|
973
|
+
|
|
974
|
+
name = "name_example" # String |
|
|
975
|
+
|
|
976
|
+
opts = {
|
|
977
|
+
operation: "operation_example", # String |
|
|
978
|
+
delete_authorizable: "delete_authorizable_example", # String |
|
|
979
|
+
file: File.new("/path/to/file.txt") # File |
|
|
980
|
+
}
|
|
981
|
+
|
|
982
|
+
begin
|
|
983
|
+
api_instance.post_node(path, name, opts)
|
|
984
|
+
rescue SwaggerAemClient::ApiError => e
|
|
985
|
+
puts "Exception when calling SlingApi->post_node: #{e}"
|
|
986
|
+
end
|
|
987
|
+
```
|
|
988
|
+
|
|
989
|
+
### Parameters
|
|
990
|
+
|
|
991
|
+
Name | Type | Description | Notes
|
|
992
|
+
------------- | ------------- | ------------- | -------------
|
|
993
|
+
**path** | **String**| |
|
|
994
|
+
**name** | **String**| |
|
|
995
|
+
**operation** | **String**| | [optional]
|
|
996
|
+
**delete_authorizable** | **String**| | [optional]
|
|
997
|
+
**file** | **File**| | [optional]
|
|
998
|
+
|
|
999
|
+
### Return type
|
|
1000
|
+
|
|
1001
|
+
nil (empty response body)
|
|
1002
|
+
|
|
1003
|
+
### Authorization
|
|
1004
|
+
|
|
1005
|
+
[aemAuth](../README.md#aemAuth)
|
|
1006
|
+
|
|
1007
|
+
### HTTP request headers
|
|
1008
|
+
|
|
1009
|
+
- **Content-Type**: multipart/form-data
|
|
1010
|
+
- **Accept**: text/plain
|
|
1011
|
+
|
|
1012
|
+
|
|
1013
|
+
|
|
953
1014
|
# **post_node_rw**
|
|
954
1015
|
> post_node_rw(path, name, opts)
|
|
955
1016
|
|
|
@@ -1081,7 +1142,7 @@ api_instance = SwaggerAemClient::SlingApi.new
|
|
|
1081
1142
|
|
|
1082
1143
|
path = "path_example" # String |
|
|
1083
1144
|
|
|
1084
|
-
p_limit =
|
|
1145
|
+
p_limit = 8.14 # Float |
|
|
1085
1146
|
|
|
1086
1147
|
_1_property = "_1_property_example" # String |
|
|
1087
1148
|
|
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
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
OpenAPI spec version: 2.0.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
|
|
|
@@ -1113,6 +1113,75 @@ module SwaggerAemClient
|
|
|
1113
1113
|
return data, status_code, headers
|
|
1114
1114
|
end
|
|
1115
1115
|
|
|
1116
|
+
#
|
|
1117
|
+
#
|
|
1118
|
+
# @param path
|
|
1119
|
+
# @param name
|
|
1120
|
+
# @param [Hash] opts the optional parameters
|
|
1121
|
+
# @option opts [String] :operation
|
|
1122
|
+
# @option opts [String] :delete_authorizable
|
|
1123
|
+
# @option opts [File] :file
|
|
1124
|
+
# @return [nil]
|
|
1125
|
+
def post_node(path, name, opts = {})
|
|
1126
|
+
post_node_with_http_info(path, name, opts)
|
|
1127
|
+
return nil
|
|
1128
|
+
end
|
|
1129
|
+
|
|
1130
|
+
#
|
|
1131
|
+
#
|
|
1132
|
+
# @param path
|
|
1133
|
+
# @param name
|
|
1134
|
+
# @param [Hash] opts the optional parameters
|
|
1135
|
+
# @option opts [String] :operation
|
|
1136
|
+
# @option opts [String] :delete_authorizable
|
|
1137
|
+
# @option opts [File] :file
|
|
1138
|
+
# @return [Array<(nil, Fixnum, Hash)>] nil, response status code and response headers
|
|
1139
|
+
def post_node_with_http_info(path, name, opts = {})
|
|
1140
|
+
if @api_client.config.debugging
|
|
1141
|
+
@api_client.config.logger.debug "Calling API: SlingApi.post_node ..."
|
|
1142
|
+
end
|
|
1143
|
+
# verify the required parameter 'path' is set
|
|
1144
|
+
if @api_client.config.client_side_validation && path.nil?
|
|
1145
|
+
fail ArgumentError, "Missing the required parameter 'path' when calling SlingApi.post_node"
|
|
1146
|
+
end
|
|
1147
|
+
# verify the required parameter 'name' is set
|
|
1148
|
+
if @api_client.config.client_side_validation && name.nil?
|
|
1149
|
+
fail ArgumentError, "Missing the required parameter 'name' when calling SlingApi.post_node"
|
|
1150
|
+
end
|
|
1151
|
+
# resource path
|
|
1152
|
+
local_var_path = "/{path}/{name}".sub('{' + 'path' + '}', path.to_s).sub('{' + 'name' + '}', name.to_s)
|
|
1153
|
+
|
|
1154
|
+
# query parameters
|
|
1155
|
+
query_params = {}
|
|
1156
|
+
query_params[:':operation'] = opts[:'operation'] if !opts[:'operation'].nil?
|
|
1157
|
+
query_params[:'deleteAuthorizable'] = opts[:'delete_authorizable'] if !opts[:'delete_authorizable'].nil?
|
|
1158
|
+
|
|
1159
|
+
# header parameters
|
|
1160
|
+
header_params = {}
|
|
1161
|
+
# HTTP header 'Accept' (if needed)
|
|
1162
|
+
header_params['Accept'] = @api_client.select_header_accept(['text/plain'])
|
|
1163
|
+
# HTTP header 'Content-Type'
|
|
1164
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['multipart/form-data'])
|
|
1165
|
+
|
|
1166
|
+
# form parameters
|
|
1167
|
+
form_params = {}
|
|
1168
|
+
form_params["file"] = opts[:'file'] if !opts[:'file'].nil?
|
|
1169
|
+
|
|
1170
|
+
# http body (model)
|
|
1171
|
+
post_body = nil
|
|
1172
|
+
auth_names = ['aemAuth']
|
|
1173
|
+
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
|
1174
|
+
:header_params => header_params,
|
|
1175
|
+
:query_params => query_params,
|
|
1176
|
+
:form_params => form_params,
|
|
1177
|
+
:body => post_body,
|
|
1178
|
+
:auth_names => auth_names)
|
|
1179
|
+
if @api_client.config.debugging
|
|
1180
|
+
@api_client.config.logger.debug "API called: SlingApi#post_node\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
|
1181
|
+
end
|
|
1182
|
+
return data, status_code, headers
|
|
1183
|
+
end
|
|
1184
|
+
|
|
1116
1185
|
#
|
|
1117
1186
|
#
|
|
1118
1187
|
# @param path
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
OpenAPI spec version: 2.0.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
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
OpenAPI spec version: 2.0.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
|
@@ -6,10 +6,10 @@
|
|
|
6
6
|
OpenAPI spec version: 2.0.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 = "2.
|
|
14
|
+
VERSION = "2.1.0"
|
|
15
15
|
end
|
data/spec/api/cq_api_spec.rb
CHANGED
data/spec/api/crx_api_spec.rb
CHANGED
data/spec/api/custom_api_spec.rb
CHANGED
data/spec/api/sling_api_spec.rb
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
OpenAPI spec version: 2.0.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
|
|
|
@@ -305,6 +305,22 @@ describe 'SlingApi' do
|
|
|
305
305
|
end
|
|
306
306
|
end
|
|
307
307
|
|
|
308
|
+
# unit tests for post_node
|
|
309
|
+
#
|
|
310
|
+
#
|
|
311
|
+
# @param path
|
|
312
|
+
# @param name
|
|
313
|
+
# @param [Hash] opts the optional parameters
|
|
314
|
+
# @option opts [String] :operation
|
|
315
|
+
# @option opts [String] :delete_authorizable
|
|
316
|
+
# @option opts [File] :file
|
|
317
|
+
# @return [nil]
|
|
318
|
+
describe 'post_node test' do
|
|
319
|
+
it "should work" do
|
|
320
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
321
|
+
end
|
|
322
|
+
end
|
|
323
|
+
|
|
308
324
|
# unit tests for post_node_rw
|
|
309
325
|
#
|
|
310
326
|
#
|
data/spec/api_client_spec.rb
CHANGED
data/spec/configuration_spec.rb
CHANGED
data/spec/spec_helper.rb
CHANGED
data/swagger_aem.gemspec
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
OpenAPI spec version: 2.0.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
|
|
|
@@ -25,7 +25,7 @@ Gem::Specification.new do |s|
|
|
|
25
25
|
s.summary = "Adobe Experience Manager (AEM) API Ruby Gem"
|
|
26
26
|
s.description = "Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API"
|
|
27
27
|
s.license = "Apache 2.0"
|
|
28
|
-
s.required_ruby_version = ">= 2.
|
|
28
|
+
s.required_ruby_version = ">= 2.1"
|
|
29
29
|
|
|
30
30
|
s.add_runtime_dependency 'typhoeus', '~> 1.0', '>= 1.0.1'
|
|
31
31
|
s.add_runtime_dependency 'json', '~> 2.1', '>= 2.1.0'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: swagger_aem
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Shine Solutions
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-
|
|
11
|
+
date: 2018-07-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: typhoeus
|
|
@@ -245,7 +245,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
245
245
|
requirements:
|
|
246
246
|
- - ">="
|
|
247
247
|
- !ruby/object:Gem::Version
|
|
248
|
-
version: '2.
|
|
248
|
+
version: '2.1'
|
|
249
249
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
250
250
|
requirements:
|
|
251
251
|
- - ">="
|
|
@@ -253,7 +253,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
253
253
|
version: '0'
|
|
254
254
|
requirements: []
|
|
255
255
|
rubyforge_project:
|
|
256
|
-
rubygems_version: 2.6.14
|
|
256
|
+
rubygems_version: 2.6.14.1
|
|
257
257
|
signing_key:
|
|
258
258
|
specification_version: 4
|
|
259
259
|
summary: Adobe Experience Manager (AEM) API Ruby Gem
|