sshkit 0.0.29 → 0.0.31
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/sshkit/formatters/pretty.rb +2 -0
- data/lib/sshkit/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e7599ea76f512f0cd949f7bee0eadeefba313c06
|
4
|
+
data.tar.gz: 404db01e9f422d1d7d40644ec595bca95087a139
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ce391ccdd7f88f213786f14d6da0629a50251dcfc0404e3e8490b74937ccf87211287c3ada466bf85158b158a932f132124dff25feb6c9c5d1c9fe39b6a2314d
|
7
|
+
data.tar.gz: 2f45a836306929643a550d11b5a97c4403b364bf15ef32b045f8a1a7211aca656c939561ae971fa9d007b546a92a96f5f785605a01be9b46d0dceefbfe30cf4d
|
@@ -31,12 +31,14 @@ module SSHKit
|
|
31
31
|
unless command.stdout.empty?
|
32
32
|
command.stdout.lines.each do |line|
|
33
33
|
original_output << level(Logger::DEBUG) + uuid(command) + c.green("\t" + line)
|
34
|
+
original_output << "\n" unless line[-1] == "\n"
|
34
35
|
end
|
35
36
|
end
|
36
37
|
|
37
38
|
unless command.stderr.empty?
|
38
39
|
command.stderr.lines.each do |line|
|
39
40
|
original_output << level(Logger::DEBUG) + uuid(command) + c.red("\t" + line)
|
41
|
+
original_output << "\n" unless line[-1] == "\n"
|
40
42
|
end
|
41
43
|
end
|
42
44
|
end
|
data/lib/sshkit/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sshkit
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.31
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Lee Hambley
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-
|
12
|
+
date: 2013-07-04 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: net-ssh
|
@@ -265,7 +265,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
265
265
|
version: '0'
|
266
266
|
requirements: []
|
267
267
|
rubyforge_project:
|
268
|
-
rubygems_version: 2.0.
|
268
|
+
rubygems_version: 2.0.3
|
269
269
|
signing_key:
|
270
270
|
specification_version: 4
|
271
271
|
summary: SSHKit makes it easy to write structured, testable SSH commands in Ruby
|