swagger_aem 0.9.1 → 0.9.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +6 -6
- data/docs/SlingApi.md +4 -0
- 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 +2 -2
- data/lib/swagger_aem/api/sling_api.rb +8 -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/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 +2 -2
- data/spec/api/sling_api_spec.rb +4 -2
- data/spec/api_client_spec.rb +2 -2
- data/spec/configuration_spec.rb +2 -2
- data/spec/spec_helper.rb +2 -2
- data/swagger_aem.gemspec +2 -2
- metadata +40 -40
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 974edb9490cff4040be3a8be0172da17c958159d
|
4
|
+
data.tar.gz: 22c0b7ea83319cfc63bac408ffcfb7a91a57d68c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ad4cbdc2ed8534f446c94b32498b814d624886ef49c152f88518e53b3b50f29c074bd54bc29319ce4dd5c3bb0a851980278d9ecfddf82b111a2ce1de8d0d0f5c
|
7
|
+
data.tar.gz: afb35d0648fa627228f7abea79ba34322c53d98a7d1dce1e9d77728c2ab7d9d4b98d7ad248aa8e91c7c307e83cab897bbb141ba98054f0620c7d7c4cdabb4db0
|
data/README.md
CHANGED
@@ -6,10 +6,10 @@ 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: 0.9.
|
11
|
-
- Build date: 2016-09-03T23:46:12.813+10:00
|
9
|
+
- API version: 1.1
|
10
|
+
- Package version: 0.9.2
|
12
11
|
- Build package: class io.swagger.codegen.languages.RubyClientCodegen
|
12
|
+
For more information, please visit [http://shinesolutions.com](http://shinesolutions.com)
|
13
13
|
|
14
14
|
## Installation
|
15
15
|
|
@@ -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-0.9.
|
27
|
+
gem install ./swagger_aem-0.9.2.gem
|
28
28
|
```
|
29
|
-
(for development, run `gem install --dev ./swagger_aem-0.9.
|
29
|
+
(for development, run `gem install --dev ./swagger_aem-0.9.2.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', '~> 0.9.
|
35
|
+
gem 'swagger_aem', '~> 0.9.2'
|
36
36
|
|
37
37
|
### Install from Git
|
38
38
|
|
data/docs/SlingApi.md
CHANGED
@@ -368,6 +368,8 @@ opts = {
|
|
368
368
|
jcrcontentjcrdescription: "jcrcontentjcrdescription_example", # String |
|
369
369
|
jcrcontentslingresource_type: "jcrcontentslingresource_type_example", # String |
|
370
370
|
jcrcontenttransport_uri: "jcrcontenttransport_uri_example", # String |
|
371
|
+
jcrcontenttransport_user: "jcrcontenttransport_user_example", # String |
|
372
|
+
jcrcontenttransport_password: "jcrcontenttransport_password_example", # String |
|
371
373
|
jcrcontentlog_level: "jcrcontentlog_level_example", # String |
|
372
374
|
jcrcontentno_versioning: true, # BOOLEAN |
|
373
375
|
jcrcontentprotocol_http_headers: ["jcrcontentprotocol_http_headers_example"], # Array<String> |
|
@@ -401,6 +403,8 @@ Name | Type | Description | Notes
|
|
401
403
|
**jcrcontentjcrdescription** | **String**| | [optional]
|
402
404
|
**jcrcontentslingresource_type** | **String**| | [optional]
|
403
405
|
**jcrcontenttransport_uri** | **String**| | [optional]
|
406
|
+
**jcrcontenttransport_user** | **String**| | [optional]
|
407
|
+
**jcrcontenttransport_password** | **String**| | [optional]
|
404
408
|
**jcrcontentlog_level** | **String**| | [optional]
|
405
409
|
**jcrcontentno_versioning** | **BOOLEAN**| | [optional]
|
406
410
|
**jcrcontentprotocol_http_headers** | [**Array<String>**](String.md)| | [optional]
|
data/lib/swagger_aem.rb
CHANGED
@@ -3,8 +3,8 @@
|
|
3
3
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
5
5
|
|
6
|
-
OpenAPI spec version: 1.
|
7
|
-
|
6
|
+
OpenAPI spec version: 1.1
|
7
|
+
Contact: opensource@shinesolutions.com
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
9
|
|
10
10
|
Licensed under the Apache License, Version 2.0 (the "License");
|
@@ -3,8 +3,8 @@
|
|
3
3
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
5
5
|
|
6
|
-
OpenAPI spec version: 1.
|
7
|
-
|
6
|
+
OpenAPI spec version: 1.1
|
7
|
+
Contact: opensource@shinesolutions.com
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
9
|
|
10
10
|
Licensed under the Apache License, Version 2.0 (the "License");
|
@@ -3,8 +3,8 @@
|
|
3
3
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
5
5
|
|
6
|
-
OpenAPI spec version: 1.
|
7
|
-
|
6
|
+
OpenAPI spec version: 1.1
|
7
|
+
Contact: opensource@shinesolutions.com
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
9
|
|
10
10
|
Licensed under the Apache License, Version 2.0 (the "License");
|
@@ -3,8 +3,8 @@
|
|
3
3
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
5
5
|
|
6
|
-
OpenAPI spec version: 1.
|
7
|
-
|
6
|
+
OpenAPI spec version: 1.1
|
7
|
+
Contact: opensource@shinesolutions.com
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
9
|
|
10
10
|
Licensed under the Apache License, Version 2.0 (the "License");
|
@@ -3,8 +3,8 @@
|
|
3
3
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
5
5
|
|
6
|
-
OpenAPI spec version: 1.
|
7
|
-
|
6
|
+
OpenAPI spec version: 1.1
|
7
|
+
Contact: opensource@shinesolutions.com
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
9
|
|
10
10
|
Licensed under the Apache License, Version 2.0 (the "License");
|
@@ -412,6 +412,8 @@ module SwaggerAemClient
|
|
412
412
|
# @option opts [String] :jcrcontentjcrdescription
|
413
413
|
# @option opts [String] :jcrcontentslingresource_type
|
414
414
|
# @option opts [String] :jcrcontenttransport_uri
|
415
|
+
# @option opts [String] :jcrcontenttransport_user
|
416
|
+
# @option opts [String] :jcrcontenttransport_password
|
415
417
|
# @option opts [String] :jcrcontentlog_level
|
416
418
|
# @option opts [BOOLEAN] :jcrcontentno_versioning
|
417
419
|
# @option opts [Array<String>] :jcrcontentprotocol_http_headers
|
@@ -441,6 +443,8 @@ module SwaggerAemClient
|
|
441
443
|
# @option opts [String] :jcrcontentjcrdescription
|
442
444
|
# @option opts [String] :jcrcontentslingresource_type
|
443
445
|
# @option opts [String] :jcrcontenttransport_uri
|
446
|
+
# @option opts [String] :jcrcontenttransport_user
|
447
|
+
# @option opts [String] :jcrcontenttransport_password
|
444
448
|
# @option opts [String] :jcrcontentlog_level
|
445
449
|
# @option opts [BOOLEAN] :jcrcontentno_versioning
|
446
450
|
# @option opts [Array<String>] :jcrcontentprotocol_http_headers
|
@@ -473,6 +477,8 @@ module SwaggerAemClient
|
|
473
477
|
query_params[:'jcr:content/jcr:description'] = opts[:'jcrcontentjcrdescription'] if !opts[:'jcrcontentjcrdescription'].nil?
|
474
478
|
query_params[:'jcr:content/sling:resourceType'] = opts[:'jcrcontentslingresource_type'] if !opts[:'jcrcontentslingresource_type'].nil?
|
475
479
|
query_params[:'jcr:content/transportUri'] = opts[:'jcrcontenttransport_uri'] if !opts[:'jcrcontenttransport_uri'].nil?
|
480
|
+
query_params[:'jcr:content/transportUser'] = opts[:'jcrcontenttransport_user'] if !opts[:'jcrcontenttransport_user'].nil?
|
481
|
+
query_params[:'jcr:content/transportPassword'] = opts[:'jcrcontenttransport_password'] if !opts[:'jcrcontenttransport_password'].nil?
|
476
482
|
query_params[:'jcr:content/logLevel'] = opts[:'jcrcontentlog_level'] if !opts[:'jcrcontentlog_level'].nil?
|
477
483
|
query_params[:'jcr:content/noVersioning'] = opts[:'jcrcontentno_versioning'] if !opts[:'jcrcontentno_versioning'].nil?
|
478
484
|
query_params[:'jcr:content/protocolHTTPHeaders'] = @api_client.build_collection_param(opts[:'jcrcontentprotocol_http_headers'], :multi) if !opts[:'jcrcontentprotocol_http_headers'].nil?
|
@@ -3,8 +3,8 @@
|
|
3
3
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
5
5
|
|
6
|
-
OpenAPI spec version: 1.
|
7
|
-
|
6
|
+
OpenAPI spec version: 1.1
|
7
|
+
Contact: opensource@shinesolutions.com
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
9
|
|
10
10
|
Licensed under the Apache License, Version 2.0 (the "License");
|
@@ -3,8 +3,8 @@
|
|
3
3
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
5
5
|
|
6
|
-
OpenAPI spec version: 1.
|
7
|
-
|
6
|
+
OpenAPI spec version: 1.1
|
7
|
+
Contact: opensource@shinesolutions.com
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
9
|
|
10
10
|
Licensed under the Apache License, Version 2.0 (the "License");
|
@@ -3,8 +3,8 @@
|
|
3
3
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
5
5
|
|
6
|
-
OpenAPI spec version: 1.
|
7
|
-
|
6
|
+
OpenAPI spec version: 1.1
|
7
|
+
Contact: opensource@shinesolutions.com
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
9
|
|
10
10
|
Licensed under the Apache License, Version 2.0 (the "License");
|
data/lib/swagger_aem/version.rb
CHANGED
@@ -3,8 +3,8 @@
|
|
3
3
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
5
5
|
|
6
|
-
OpenAPI spec version: 1.
|
7
|
-
|
6
|
+
OpenAPI spec version: 1.1
|
7
|
+
Contact: opensource@shinesolutions.com
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
9
|
|
10
10
|
Licensed under the Apache License, Version 2.0 (the "License");
|
@@ -22,5 +22,5 @@ limitations under the License.
|
|
22
22
|
=end
|
23
23
|
|
24
24
|
module SwaggerAemClient
|
25
|
-
VERSION = "0.9.
|
25
|
+
VERSION = "0.9.2"
|
26
26
|
end
|
@@ -3,8 +3,8 @@
|
|
3
3
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
5
5
|
|
6
|
-
OpenAPI spec version: 1.
|
7
|
-
|
6
|
+
OpenAPI spec version: 1.1
|
7
|
+
Contact: opensource@shinesolutions.com
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
9
|
|
10
10
|
Licensed under the Apache License, Version 2.0 (the "License");
|
data/spec/api/cq_api_spec.rb
CHANGED
@@ -3,8 +3,8 @@
|
|
3
3
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
5
5
|
|
6
|
-
OpenAPI spec version: 1.
|
7
|
-
|
6
|
+
OpenAPI spec version: 1.1
|
7
|
+
Contact: opensource@shinesolutions.com
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
9
|
|
10
10
|
Licensed under the Apache License, Version 2.0 (the "License");
|
data/spec/api/crx_api_spec.rb
CHANGED
@@ -3,8 +3,8 @@
|
|
3
3
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
5
5
|
|
6
|
-
OpenAPI spec version: 1.
|
7
|
-
|
6
|
+
OpenAPI spec version: 1.1
|
7
|
+
Contact: opensource@shinesolutions.com
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
9
|
|
10
10
|
Licensed under the Apache License, Version 2.0 (the "License");
|
data/spec/api/sling_api_spec.rb
CHANGED
@@ -3,8 +3,8 @@
|
|
3
3
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
5
5
|
|
6
|
-
OpenAPI spec version: 1.
|
7
|
-
|
6
|
+
OpenAPI spec version: 1.1
|
7
|
+
Contact: opensource@shinesolutions.com
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
9
|
|
10
10
|
Licensed under the Apache License, Version 2.0 (the "License");
|
@@ -135,6 +135,8 @@ describe 'SlingApi' do
|
|
135
135
|
# @option opts [String] :jcrcontentjcrdescription
|
136
136
|
# @option opts [String] :jcrcontentslingresource_type
|
137
137
|
# @option opts [String] :jcrcontenttransport_uri
|
138
|
+
# @option opts [String] :jcrcontenttransport_user
|
139
|
+
# @option opts [String] :jcrcontenttransport_password
|
138
140
|
# @option opts [String] :jcrcontentlog_level
|
139
141
|
# @option opts [BOOLEAN] :jcrcontentno_versioning
|
140
142
|
# @option opts [Array<String>] :jcrcontentprotocol_http_headers
|
data/spec/api_client_spec.rb
CHANGED
@@ -3,8 +3,8 @@
|
|
3
3
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
5
5
|
|
6
|
-
OpenAPI spec version: 1.
|
7
|
-
|
6
|
+
OpenAPI spec version: 1.1
|
7
|
+
Contact: opensource@shinesolutions.com
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
9
|
|
10
10
|
Licensed under the Apache License, Version 2.0 (the "License");
|
data/spec/configuration_spec.rb
CHANGED
@@ -3,8 +3,8 @@
|
|
3
3
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
5
5
|
|
6
|
-
OpenAPI spec version: 1.
|
7
|
-
|
6
|
+
OpenAPI spec version: 1.1
|
7
|
+
Contact: opensource@shinesolutions.com
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
9
|
|
10
10
|
Licensed under the Apache License, Version 2.0 (the "License");
|
data/spec/spec_helper.rb
CHANGED
@@ -3,8 +3,8 @@
|
|
3
3
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
5
5
|
|
6
|
-
OpenAPI spec version: 1.
|
7
|
-
|
6
|
+
OpenAPI spec version: 1.1
|
7
|
+
Contact: opensource@shinesolutions.com
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
9
|
|
10
10
|
Licensed under the Apache License, Version 2.0 (the "License");
|
data/swagger_aem.gemspec
CHANGED
@@ -5,8 +5,8 @@
|
|
5
5
|
|
6
6
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
7
7
|
|
8
|
-
OpenAPI spec version: 1.
|
9
|
-
|
8
|
+
OpenAPI spec version: 1.1
|
9
|
+
Contact: opensource@shinesolutions.com
|
10
10
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
11
11
|
|
12
12
|
Licensed under the Apache License, Version 2.0 (the "License");
|
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: 0.9.
|
4
|
+
version: 0.9.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Shine Solutions
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-11-07 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: '1.8'
|
40
|
-
- -
|
40
|
+
- - ">="
|
41
41
|
- !ruby/object:Gem::Version
|
42
42
|
version: 1.8.3
|
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: '1.8'
|
50
|
-
- -
|
50
|
+
- - ">="
|
51
51
|
- !ruby/object:Gem::Version
|
52
52
|
version: 1.8.3
|
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.4'
|
60
|
-
- -
|
60
|
+
- - ">="
|
61
61
|
- !ruby/object:Gem::Version
|
62
62
|
version: 3.4.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.4'
|
70
|
-
- -
|
70
|
+
- - ">="
|
71
71
|
- !ruby/object:Gem::Version
|
72
72
|
version: 3.4.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.11
|
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.11
|
193
193
|
description: Swagger AEM is an OpenAPI specification for Adobe Experience Manager
|
@@ -232,12 +232,12 @@ require_paths:
|
|
232
232
|
- lib
|
233
233
|
required_ruby_version: !ruby/object:Gem::Requirement
|
234
234
|
requirements:
|
235
|
-
- -
|
235
|
+
- - ">="
|
236
236
|
- !ruby/object:Gem::Version
|
237
237
|
version: '1.9'
|
238
238
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
239
239
|
requirements:
|
240
|
-
- -
|
240
|
+
- - ">="
|
241
241
|
- !ruby/object:Gem::Version
|
242
242
|
version: '0'
|
243
243
|
requirements: []
|