sonic-screwdriver 2.2.0 → 2.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +3 -0
- data/docs/_includes/footer.html +6 -5
- data/lib/sonic/execute.rb +1 -1
- data/lib/sonic/version.rb +1 -1
- metadata +3 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ca0ee2f6b882f119c6e607c3de2c38391c8c17236f9ef892211cb55e887c7c95
|
4
|
+
data.tar.gz: a4592ac7afc7d3c875be3f02b26f5a884d2bd09423f518cf53fc5b027c963436
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e4c02076435af8641128a6487769362b4a3cb4f428a88fe07f14cb0455f8a5ab3bf80ea1950748b9ea0690307e7c38f4f779165e01a3e5279801ad798e4b279f
|
7
|
+
data.tar.gz: f0a7a5cea95e05190b5cf2fe767cc212d49e4063b9cfd4e04c18fb95ed20f2ae4b59b7bfe5a245b1616750aba6eb562ab53cddc196034af98977f8c25af56845
|
data/CHANGELOG.md
CHANGED
@@ -3,6 +3,9 @@
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
This project *loosely* adheres to [Semantic Versioning](http://semver.org/), even before v1.0.
|
5
5
|
|
6
|
+
## [2.2.1] - 2021-04-12
|
7
|
+
- [#9](https://github.com/boltops-tools/sonic/pull/9) improve command array handling
|
8
|
+
|
6
9
|
## [2.2.0]
|
7
10
|
- #7 sonic execute command: `--tags` and `--instance-id` options instead of polymorphic list. Breaking behavior.
|
8
11
|
- display output even if tags used
|
data/docs/_includes/footer.html
CHANGED
@@ -6,11 +6,12 @@
|
|
6
6
|
<div class="footer-col col-md-4">
|
7
7
|
<h3>More Tools</h3>
|
8
8
|
<ul class="list-unstyled tools">
|
9
|
-
<li><a href="
|
10
|
-
<li><a href="
|
11
|
-
<li><a href="
|
12
|
-
<li><a href="
|
13
|
-
<li><a href="https://
|
9
|
+
<li><a href="https://terraspace.cloud">Terraspace</a></li>
|
10
|
+
<li><a href="https://kubes.guru">Kubes</a></li>
|
11
|
+
<li><a href="https://rubyonjets.com">Jets</a></li>
|
12
|
+
<li><a href="https://ufoships.com">Ufo</a></li>
|
13
|
+
<li><a href="https://lono.cloud">Lono</a></li>
|
14
|
+
<li><a href="https://jack-eb.com">Jack</a></li>
|
14
15
|
</ul>
|
15
16
|
</div>
|
16
17
|
<div class="footer-col col-md-4">
|
data/lib/sonic/execute.rb
CHANGED
@@ -256,7 +256,7 @@ module Sonic
|
|
256
256
|
# The script is being feed inline so just join the command together into one script.
|
257
257
|
# Still keep in an array form because that's how ssn.send_command works with AWS-RunShellScript
|
258
258
|
# usually reads the command.
|
259
|
-
|
259
|
+
command.is_a?(Array) ? command : [command]
|
260
260
|
end
|
261
261
|
end
|
262
262
|
|
data/lib/sonic/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sonic-screwdriver
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.2.
|
4
|
+
version: 2.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tung Nguyen
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-04-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -263,7 +263,6 @@ files:
|
|
263
263
|
- CHANGELOG.md
|
264
264
|
- CONTRIBUTING.md
|
265
265
|
- Gemfile
|
266
|
-
- Gemfile.lock
|
267
266
|
- Guardfile
|
268
267
|
- LICENSE.txt
|
269
268
|
- README.md
|
@@ -420,7 +419,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
420
419
|
- !ruby/object:Gem::Version
|
421
420
|
version: '0'
|
422
421
|
requirements: []
|
423
|
-
rubygems_version: 3.
|
422
|
+
rubygems_version: 3.2.5
|
424
423
|
signing_key:
|
425
424
|
specification_version: 4
|
426
425
|
summary: Multi-functional tool to manage AWS infrastructure
|