ruby_aem 1.0.17 → 1.0.18
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/conf/spec.yaml +10 -0
- data/lib/ruby_aem/resources/package.rb +7 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e416e06b6a94132684f6ce55369671579b4312e2
|
|
4
|
+
data.tar.gz: 23622d5f61323b8fe7abc10860a68344c3cc9efc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e35b72adbfd99dd6d4dea0af11de29f2f2ea31d00ee04b440311230cfebbc80077ba4349320ec782cb946a37241cbf3b076bfec48a21075f7a5345ca3484b321
|
|
7
|
+
data.tar.gz: 4fd4bf6e5856e9e3e7eef679dac78e65386fe26e8df30db659554f3494962ec5f3e6b94893008c49f2d060491eba743275adf4d71a04623ba6fd2459925819fa
|
data/conf/spec.yaml
CHANGED
|
@@ -325,6 +325,16 @@ package:
|
|
|
325
325
|
500:
|
|
326
326
|
handler: html_package_service_allow_error
|
|
327
327
|
message: 'Allowed package installation error - %{title}: %{desc} %{reason}'
|
|
328
|
+
uninstall:
|
|
329
|
+
api: crx
|
|
330
|
+
operation: postPackageServiceJson
|
|
331
|
+
params:
|
|
332
|
+
required:
|
|
333
|
+
path: 'etc/packages/%{group_name}/%{package_name}-%{package_version}.zip'
|
|
334
|
+
cmd: uninstall
|
|
335
|
+
responses:
|
|
336
|
+
200:
|
|
337
|
+
handler: json_package_service
|
|
328
338
|
replicate:
|
|
329
339
|
api: crx
|
|
330
340
|
operation: postPackageServiceJson
|
|
@@ -82,6 +82,13 @@ module RubyAem
|
|
|
82
82
|
@client.call(self.class, __callee__.to_s, @call_params)
|
|
83
83
|
end
|
|
84
84
|
|
|
85
|
+
# Uninstall the package.
|
|
86
|
+
#
|
|
87
|
+
# @return RubyAem::Result
|
|
88
|
+
def uninstall()
|
|
89
|
+
@client.call(self.class, __callee__.to_s, @call_params)
|
|
90
|
+
end
|
|
91
|
+
|
|
85
92
|
# Replicate the package.
|
|
86
93
|
# Package will then be added to replication agents.
|
|
87
94
|
#
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ruby_aem
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.18
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Shine Solutions
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2017-04-
|
|
12
|
+
date: 2017-04-19 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: nokogiri
|