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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2209b745253486281551f9d09112eaf4b5f7f172
4
- data.tar.gz: 9808d4c127a1dfec74d4592a5899b93890bbeed9
3
+ metadata.gz: e7599ea76f512f0cd949f7bee0eadeefba313c06
4
+ data.tar.gz: 404db01e9f422d1d7d40644ec595bca95087a139
5
5
  SHA512:
6
- metadata.gz: e20d78195598548603137e94862e8402d7935b15b8481b3224045092b4f16011654b9fec5cdd5dd67b81c6272e0e4a6ecb8add478891abe06e938ed372be0a47
7
- data.tar.gz: 7a8224001a594fa635afcd69199cb40873fa0870e4f05b5f1a81a00e8a448bb6a1797b7b535a5d8ed9fff7a18b07a2411312c3973842877fd27f86127b2755cd
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
@@ -1,3 +1,3 @@
1
1
  module SSHKit
2
- VERSION = "0.0.29"
2
+ VERSION = "0.0.31"
3
3
  end
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.29
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-06-25 00:00:00.000000000 Z
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.2
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