uoregon-multissh 0.3.2 → 0.3.3
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/.gitignore +1 -0
- data/lib/cli.rb +2 -3
- data/uoregon-multissh.gemspec +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d284c7f4d29ba2c2472e6f4d7c842105a2336af8c6f4c32a6031d09b2e561efa
|
4
|
+
data.tar.gz: 856f4c7bfd5d3243933c10ebe93b5cd5d6e6094e3141e27ff6db51b4bf764aa2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6457ecbc9c7808e8a1bbaf8dc6838fe18da88c7b410f4a7a7477b0bb7b68db938347687d2bec6120db6f2a2b7420cfa30394bc0f59b5d93639e0fa011fc8c27e
|
7
|
+
data.tar.gz: '05725282dc0715f76e083bf93cee7b2cf13cac7b3d3193f1510c51e13ddc90317cf6f26a2085276e3237796019d21856ee5a52b7b3f4c32875d56197c6716d16'
|
data/.gitignore
CHANGED
data/lib/cli.rb
CHANGED
@@ -62,7 +62,6 @@ class Cli
|
|
62
62
|
end#initialize
|
63
63
|
|
64
64
|
|
65
|
-
|
66
65
|
def parse_nodes(nodes)
|
67
66
|
##
|
68
67
|
# If '@' is used, return a list of nodes from a file
|
@@ -82,9 +81,9 @@ class Cli
|
|
82
81
|
end#f.each_line
|
83
82
|
end#File.open
|
84
83
|
end#File.exists?
|
85
|
-
node_list
|
84
|
+
return node_list
|
86
85
|
else
|
87
|
-
nodes.split(',').map(&:strip)
|
86
|
+
return nodes.split(',').map(&:strip)
|
88
87
|
end#if
|
89
88
|
end#parse_nodes
|
90
89
|
|
data/uoregon-multissh.gemspec
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
Gem::Specification.new do |spec|
|
2
2
|
spec.name = 'uoregon-multissh'
|
3
|
-
spec.version = '0.3.
|
3
|
+
spec.version = '0.3.3'
|
4
4
|
spec.date = '2019-05-14'
|
5
5
|
spec.summary = "Do all the things everywhere at the same time"
|
6
6
|
spec.description = "Quickly run multiple commands on many boxes at the same time"
|
7
7
|
spec.authors = ["Lucas Crownover"]
|
8
8
|
spec.email = 'lcrownover127@gmail.com'
|
9
9
|
spec.homepage = 'https://www.savethemanatee.org/manatees/facts/'
|
10
|
-
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features|build)/}) }
|
10
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features|build|dev)/}) }
|
11
11
|
spec.executables = ["multissh"]
|
12
12
|
spec.require_paths = ["lib"]
|
13
13
|
spec.add_runtime_dependency "colorize", [">= 0.8.1"]
|