ruby_aem 3.10.1 → 3.11.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6bafd8e93a34eea1e44db851ebfc4f4067c0578c
4
- data.tar.gz: f44a61f6090e948c85a5db8551c922e943bb025a
3
+ metadata.gz: 5f8e6da1797711c987b5bca88390a88626bddc20
4
+ data.tar.gz: 65e8624e50c3557d0195d549291ccc2e1d14d1cb
5
5
  SHA512:
6
- metadata.gz: c3c22c215225b5ec46ebcdc3e10fcbc8c92aa1b2609f85d7eacb389b3797103e5ae510f21b9ce62c2be21c3b9d01f8023d7968329811767bd07d8cc5ff4b2add
7
- data.tar.gz: 73cb51e959598af927c0af859f5590930d71e724f7049963578384ff0f3b180492b4bbbc0b8714f0471c85e8480b72a06ec04e0630967da31c2bb39e3df38310
6
+ metadata.gz: 9e8135f981cabb68a153ea6aa0ee21301e999acb3dd0546341df65ddacc1be750bc1a9a20da1cafd6fb70165b7c26440046ddada9c246d393b4a59ca55c56d2d
7
+ data.tar.gz: 4f73f9747d422ad3377e92428dd1ceb770a27fe084ef0950c9834e7e85d22a1f096032c4a8e8f08fb72991319785e9127b3fb365510e321f329d98cc64a27a15
data/conf/gem.yaml CHANGED
@@ -1 +1 @@
1
- version: 3.10.1
1
+ version: 3.11.1
data/conf/spec.yaml CHANGED
@@ -228,6 +228,16 @@ bundle:
228
228
  200:
229
229
  handler: simple
230
230
  message: 'Bundle %{name} stopped'
231
+ info:
232
+ api: console
233
+ operation: getBundleInfo
234
+ params:
235
+ required:
236
+ name: '%{name}'
237
+ responses:
238
+ 200:
239
+ handler: simple_body
240
+ message: 'Retrieved bundle %{name} info'
231
241
  aemconfigmgr:
232
242
  actions:
233
243
  get:
@@ -1,4 +1,4 @@
1
- # Copyright 2016-2019 Shine Solutions
1
+ # Copyright 2016-2021 Shine Solutions Group
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2016-2019 Shine Solutions
1
+ # Copyright 2016-2021 Shine Solutions Group
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2016-2019 Shine Solutions
1
+ # Copyright 2016-2021 Shine Solutions Group
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2016-2019 Shine Solutions
1
+ # Copyright 2016-2021 Shine Solutions Group
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2016-2019 Shine Solutions
1
+ # Copyright 2016-2021 Shine Solutions Group
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2016-2019 Shine Solutions
1
+ # Copyright 2016-2021 Shine Solutions Group
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2016-2019 Shine Solutions
1
+ # Copyright 2016-2021 Shine Solutions Group
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2016-2019 Shine Solutions
1
+ # Copyright 2016-2021 Shine Solutions Group
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2016-2019 Shine Solutions
1
+ # Copyright 2016-2021 Shine Solutions Group
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2016-2019 Shine Solutions
1
+ # Copyright 2016-2021 Shine Solutions Group
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2016-2019 Shine Solutions
1
+ # Copyright 2016-2021 Shine Solutions Group
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -41,6 +41,13 @@ module RubyAem
41
41
  def stop
42
42
  @client.call(self.class, __callee__.to_s, @call_params)
43
43
  end
44
+
45
+ # Retrieve bundle info.
46
+ #
47
+ # @return RubyAem::Result
48
+ def info
49
+ @client.call(self.class, __callee__.to_s, @call_params)
50
+ end
44
51
  end
45
52
  end
46
53
  end
@@ -1,4 +1,4 @@
1
- # Copyright 2016-2018 Shine Solutions
1
+ # Copyright 2016-2018-2021 Shine Solutions Group
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2016-2018 Shine Solutions
1
+ # Copyright 2016-2018-2021 Shine Solutions Group
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2016-2019 Shine Solutions
1
+ # Copyright 2016-2021 Shine Solutions Group
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2016-2019 Shine Solutions
1
+ # Copyright 2016-2021 Shine Solutions Group
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2016-2019 Shine Solutions
1
+ # Copyright 2016-2021 Shine Solutions Group
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2016-2019 Shine Solutions
1
+ # Copyright 2016-2021 Shine Solutions Group
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2016-2019 Shine Solutions
1
+ # Copyright 2016-2021 Shine Solutions Group
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2016-2019 Shine Solutions
1
+ # Copyright 2016-2021 Shine Solutions Group
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2016-2019 Shine Solutions
1
+ # Copyright 2016-2021 Shine Solutions Group
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2016-2019 Shine Solutions
1
+ # Copyright 2016-2021 Shine Solutions Group
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2016-2019 Shine Solutions
1
+ # Copyright 2016-2021 Shine Solutions Group
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2016-2019 Shine Solutions
1
+ # Copyright 2016-2021 Shine Solutions Group
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2016-2019 Shine Solutions
1
+ # Copyright 2016-2021 Shine Solutions Group
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2016-2018 Shine Solutions
1
+ # Copyright 2016-2018-2021 Shine Solutions Group
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2016-2019 Shine Solutions
1
+ # Copyright 2016-2021 Shine Solutions Group
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2016-2019 Shine Solutions
1
+ # Copyright 2016-2021 Shine Solutions Group
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2016-2019 Shine Solutions
1
+ # Copyright 2016-2021 Shine Solutions Group
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2016-2019 Shine Solutions
1
+ # Copyright 2016-2021 Shine Solutions Group
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2016-2019 Shine Solutions
1
+ # Copyright 2016-2021 Shine Solutions Group
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
data/lib/ruby_aem.rb CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright 2016-2019 Shine Solutions
1
+ # Copyright 2016-2021 Shine Solutions Group
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
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: 3.10.1
4
+ version: 3.11.1
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: 2020-12-01 00:00:00.000000000 Z
12
+ date: 2021-09-28 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: retries