comp_tree 0.7.4 → 0.7.5
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.
- data/CHANGES.rdoc +4 -0
- data/devel/jumpstart/jumpstart.rb +1 -1
- data/devel/jumpstart/ruby.rb +3 -10
- data/install.rb +1 -1
- data/lib/comp_tree.rb +1 -1
- data/lib/comp_tree/algorithm.rb +1 -1
- metadata +2 -2
data/CHANGES.rdoc
CHANGED
data/devel/jumpstart/ruby.rb
CHANGED
@@ -19,20 +19,13 @@ class Jumpstart
|
|
19
19
|
|
20
20
|
class << self
|
21
21
|
def run(*args)
|
22
|
-
system(EXECUTABLE, *args)
|
23
|
-
end
|
24
|
-
|
25
|
-
def run_or_raise(*args)
|
26
22
|
cmd = [EXECUTABLE, *args]
|
27
23
|
unless system(*cmd)
|
28
|
-
|
29
|
-
|
30
|
-
"system(*#{cmd.inspect}) failed with status #{$?.exitstatus}"
|
31
|
-
)
|
32
|
-
raise msg
|
24
|
+
cmd_str = cmd.map { |t| "'#{t}'" }.join(", ")
|
25
|
+
raise "system(#{cmd_str}) failed with status #{$?.exitstatus}"
|
33
26
|
end
|
34
27
|
end
|
35
|
-
|
28
|
+
|
36
29
|
def with_warnings(value = true)
|
37
30
|
previous = $VERBOSE
|
38
31
|
$VERBOSE = value
|
data/install.rb
CHANGED
data/lib/comp_tree.rb
CHANGED
data/lib/comp_tree/algorithm.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: comp_tree
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- James M. Lawrence
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-
|
12
|
+
date: 2009-05-11 00:00:00 -04:00
|
13
13
|
default_executable:
|
14
14
|
dependencies: []
|
15
15
|
|