comp_tree 0.5.1 → 0.5.2

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/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.1"
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
 
@@ -5,9 +5,9 @@ require 'find'
5
5
  require 'fileutils'
6
6
  require 'quix/vars'
7
7
 
8
- module Quix
8
+ module CompTree
9
9
  class SimpleInstaller
10
- include Quix::Vars
10
+ include CompTree::Vars
11
11
 
12
12
  def initialize
13
13
  dest_root = Config::CONFIG["sitelibdir"]
@@ -2,9 +2,9 @@
2
2
  require 'thread'
3
3
  require 'quix/kernel'
4
4
 
5
- module Quix
5
+ module CompTree
6
6
  class ThreadLocal
7
- include Quix::Kernel
7
+ include Misc
8
8
 
9
9
  def initialize(prefix = nil, &default)
10
10
  @name = gensym(prefix)
@@ -4,9 +4,9 @@ require 'quix/thread_local'
4
4
  require 'quix/builtin/kernel/tap'
5
5
  require 'ostruct'
6
6
 
7
- module Quix
7
+ module CompTree
8
8
  module Vars
9
- include Quix::Kernel
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
@@ -1,3 +1,3 @@
1
1
  $LOAD_PATH.unshift "./contrib/quix/lib"
2
2
  require 'quix/simple_installer'
3
- Quix::SimpleInstaller.new.run
3
+ CompTree::SimpleInstaller.new.run
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.5.1
4
+ version: 0.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - James M. Lawrence