pec2 0.3.2 → 0.4.0
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/README.md +3 -1
- data/exe/bin/pnuke +96 -0
- data/exe/bin/prsync +126 -0
- data/exe/bin/pscp +108 -0
- data/exe/bin/pslurp +129 -0
- data/exe/bin/pssh +118 -0
- data/exe/bin/pssh-askpass +11 -0
- data/exe/man/man1/pnuke.1 +268 -0
- data/exe/man/man1/prsync.1 +299 -0
- data/exe/man/man1/pscp.1 +271 -0
- data/exe/man/man1/pslurp.1 +280 -0
- data/exe/man/man1/pssh.1 +368 -0
- data/exe/psshlib/__init__.py +0 -0
- data/exe/psshlib/askpass_client.py +102 -0
- data/exe/psshlib/askpass_server.py +101 -0
- data/exe/psshlib/cli.py +110 -0
- data/exe/psshlib/color.py +39 -0
- data/exe/psshlib/manager.py +345 -0
- data/exe/psshlib/psshutil.py +108 -0
- data/exe/psshlib/task.py +288 -0
- data/exe/psshlib/version.py +1 -0
- data/lib/pec2/cli.rb +8 -4
- data/lib/pec2/core.rb +1 -1
- data/lib/pec2/version.rb +1 -1
- data/pec2.gemspec +1 -1
- metadata +25 -5
data/lib/pec2/version.rb
CHANGED
data/pec2.gemspec
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pec2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- toyama0919
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-03-
|
11
|
+
date: 2017-03-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thor
|
@@ -44,14 +44,14 @@ dependencies:
|
|
44
44
|
requirements:
|
45
45
|
- - ">="
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: '
|
47
|
+
version: '0'
|
48
48
|
type: :runtime
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
52
|
- - ">="
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: '
|
54
|
+
version: '0'
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: bundler
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
@@ -168,6 +168,26 @@ files:
|
|
168
168
|
- README.md
|
169
169
|
- Rakefile
|
170
170
|
- bin/pec2
|
171
|
+
- exe/bin/pnuke
|
172
|
+
- exe/bin/prsync
|
173
|
+
- exe/bin/pscp
|
174
|
+
- exe/bin/pslurp
|
175
|
+
- exe/bin/pssh
|
176
|
+
- exe/bin/pssh-askpass
|
177
|
+
- exe/man/man1/pnuke.1
|
178
|
+
- exe/man/man1/prsync.1
|
179
|
+
- exe/man/man1/pscp.1
|
180
|
+
- exe/man/man1/pslurp.1
|
181
|
+
- exe/man/man1/pssh.1
|
182
|
+
- exe/psshlib/__init__.py
|
183
|
+
- exe/psshlib/askpass_client.py
|
184
|
+
- exe/psshlib/askpass_server.py
|
185
|
+
- exe/psshlib/cli.py
|
186
|
+
- exe/psshlib/color.py
|
187
|
+
- exe/psshlib/manager.py
|
188
|
+
- exe/psshlib/psshutil.py
|
189
|
+
- exe/psshlib/task.py
|
190
|
+
- exe/psshlib/version.py
|
171
191
|
- lib/pec2.rb
|
172
192
|
- lib/pec2/cli.rb
|
173
193
|
- lib/pec2/constants.rb
|
@@ -198,7 +218,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
198
218
|
version: '0'
|
199
219
|
requirements: []
|
200
220
|
rubyforge_project:
|
201
|
-
rubygems_version: 2.
|
221
|
+
rubygems_version: 2.6.8
|
202
222
|
signing_key:
|
203
223
|
specification_version: 4
|
204
224
|
summary: run parallel ssh command. ec2 tag base operation.
|