comp_tree 0.5.1 → 0.5.2
Sign up to get free protection for your applications and to get access to all the features.
data/comp_tree.gemspec
CHANGED
@@ -6,7 +6,7 @@ Gem::Specification.new { |t|
|
|
6
6
|
t.name = "comp_tree"
|
7
7
|
t.rubyforge_project = "comptree"
|
8
8
|
t.homepage = "comptree.rubyforge.org"
|
9
|
-
t.version = "0.5.
|
9
|
+
t.version = "0.5.2"
|
10
10
|
t.description = "Build a computation tree and execute it with N " +
|
11
11
|
"parallel threads. Optionally fork computation nodes into new processes."
|
12
12
|
|
@@ -4,9 +4,9 @@ require 'quix/thread_local'
|
|
4
4
|
require 'quix/builtin/kernel/tap'
|
5
5
|
require 'ostruct'
|
6
6
|
|
7
|
-
module
|
7
|
+
module CompTree
|
8
8
|
module Vars
|
9
|
-
include
|
9
|
+
include CompTree::Misc
|
10
10
|
|
11
11
|
def eval_locals(code_with_locals, &block)
|
12
12
|
code_with_locals.call.split(",").map { |name|
|
data/install.rb
CHANGED