cxxproject 0.5.62 → 0.5.63
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.
@@ -50,7 +50,14 @@ module Cxxproject
|
|
50
50
|
puts cmd + (RakeFileUtils.verbose ? " (executed in '#{@project_dir}')" : "")
|
51
51
|
cmd_result = false
|
52
52
|
begin
|
53
|
-
|
53
|
+
rd, wr = IO.pipe
|
54
|
+
cmd = [cmd]
|
55
|
+
cmd << {
|
56
|
+
:err=>wr,
|
57
|
+
:out=>wr
|
58
|
+
}
|
59
|
+
cmd_result, consoleOutput = ProcessHelper.safeExecute() { sp = spawn(*cmd); ProcessHelper.readOutput(sp, rd, wr) }
|
60
|
+
puts consoleOutput
|
54
61
|
rescue
|
55
62
|
end
|
56
63
|
if (cmd_result == false)
|
data/lib/cxxproject/version.rb
CHANGED
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: cxxproject
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.5.
|
5
|
+
version: 0.5.63
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- oliver mueller
|
@@ -10,7 +10,7 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
|
13
|
-
date: 2013-04-
|
13
|
+
date: 2013-04-04 00:00:00 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: highline
|