bosh-core 1.2200.0 → 1.2291.0
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/bosh/core/shell.rb +4 -2
- data/lib/bosh/core/version.rb +1 -1
- metadata +3 -3
data/lib/bosh/core/shell.rb
CHANGED
@@ -21,10 +21,12 @@ module Bosh::Core
|
|
21
21
|
stdout.puts command if options[:output_command]
|
22
22
|
lines = []
|
23
23
|
|
24
|
-
IO.popen(command)
|
24
|
+
io = IO.popen(command)
|
25
|
+
io.each do |line|
|
25
26
|
stdout.puts line.chomp
|
26
27
|
lines << line.chomp
|
27
|
-
end
|
28
|
+
end
|
29
|
+
io.close
|
28
30
|
|
29
31
|
lines
|
30
32
|
end
|
data/lib/bosh/core/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bosh-core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.2291.0
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2014-03-
|
12
|
+
date: 2014-03-26 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: gibberish
|
@@ -106,7 +106,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
106
106
|
version: '0'
|
107
107
|
segments:
|
108
108
|
- 0
|
109
|
-
hash:
|
109
|
+
hash: 721058472494326120
|
110
110
|
requirements: []
|
111
111
|
rubyforge_project:
|
112
112
|
rubygems_version: 1.8.23
|