ruby_ex 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- data/ChangeLog +32 -0
- data/SPEC.dyn.yml +4 -4
- data/SPEC.yml +2 -2
- data/{src → lib}/abstract.rb +1 -1
- data/{src → lib}/abstract_node.rb +1 -1
- data/{src → lib}/algorithms/simulated_annealing.rb +0 -0
- data/{src → lib}/algorithms.rb +1 -1
- data/{src → lib}/ask.rb +1 -1
- data/{src → lib}/attributed_class.rb +1 -1
- data/{src → lib}/cache.rb +3 -2
- data/{src → lib}/checkout.rb +2 -2
- data/{src → lib}/choose.rb +1 -1
- data/{src → lib}/commands/command.rb +1 -1
- data/{src → lib}/commands/datas/composite.rb +1 -1
- data/{src → lib}/commands/datas/data.rb +1 -1
- data/{src → lib}/commands/datas/factory.rb +1 -1
- data/{src → lib}/commands/datas/temp.rb +1 -1
- data/{src → lib}/commands/datas.rb +1 -1
- data/{src → lib}/commands/factory.rb +1 -1
- data/{src → lib}/commands/helpers.rb +1 -1
- data/{src → lib}/commands/pipe.rb +1 -1
- data/{src → lib}/commands/runners/exec.rb +1 -1
- data/{src → lib}/commands/runners/fork.rb +1 -1
- data/{src → lib}/commands/runners/runner.rb +1 -1
- data/{src → lib}/commands/runners/system.rb +1 -1
- data/{src → lib}/commands/runners.rb +1 -1
- data/{src → lib}/commands/seq.rb +1 -1
- data/{src → lib}/commands.rb +1 -1
- data/{src → lib}/config_file.rb +1 -1
- data/{src → lib}/const_regexp.rb +1 -1
- data/{src → lib}/daemon.rb +1 -1
- data/{src → lib}/diff.rb +1 -1
- data/{src → lib}/dlogger.rb +1 -1
- data/{src → lib}/drb/drb_observable.rb +1 -1
- data/{src → lib}/drb/drb_observable_pool.rb +2 -2
- data/{src → lib}/drb/drb_service.rb +1 -1
- data/{src → lib}/drb/drb_undumped_attributes.rb +1 -1
- data/{src → lib}/drb/drb_undumped_indexed_object.rb +1 -1
- data/{src → lib}/drb/insecure_protected_methods.rb +1 -1
- data/{src → lib}/drb_ex.rb +1 -1
- data/{src → lib}/dumpable_proc.rb +1 -1
- data/{src → lib}/filetype.rb +0 -0
- data/{src → lib}/generate_id.rb +1 -1
- data/{src → lib}/histogram.rb +1 -1
- data/{src → lib}/hookable.rb +1 -1
- data/{src → lib}/hooker.rb +1 -1
- data/{src → lib}/indexed_node.rb +0 -0
- data/{src → lib}/io_marshal.rb +1 -1
- data/{src → lib}/ioo.rb +1 -1
- data/{src → lib}/labeled_node.rb +0 -0
- data/{src → lib}/logger_observer.rb +1 -1
- data/{src → lib}/md5sum.rb +1 -1
- data/{src → lib}/module/autoload_tree.rb +1 -1
- data/{src → lib}/module/hierarchy.rb +1 -1
- data/{src → lib}/module/instance_method_visibility.rb +1 -1
- data/{src → lib}/node.rb +0 -0
- data/{src → lib}/object_monitor.rb +1 -1
- data/{src → lib}/object_monitor_activity.rb +1 -1
- data/{src → lib}/observable.rb +1 -1
- data/{src → lib}/observable_pool.rb +1 -1
- data/{src → lib}/orderedhash.rb +1 -1
- data/{src → lib}/pp_hierarchy.rb +0 -0
- data/{src → lib}/random_generators/random_generator.rb +1 -1
- data/{src → lib}/random_generators/ruby.rb +1 -1
- data/{src → lib}/random_generators.rb +1 -1
- data/{src → lib}/ruby_ex.rb +1 -1
- data/{src → lib}/safe_eval.rb +1 -1
- data/{src → lib}/sendmail.rb +0 -0
- data/{src → lib}/service_manager.rb +1 -1
- data/{src → lib}/shuffle.rb +1 -1
- data/{src → lib}/spring.rb +1 -1
- data/{src → lib}/spring_set.rb +1 -1
- data/{src → lib}/symtbl.rb +1 -1
- data/{src → lib}/synflow.rb +0 -0
- data/{src → lib}/thread_mutex.rb +0 -0
- data/{src → lib}/timeout_ex.rb +1 -1
- data/{src → lib}/trace.rb +2 -2
- data/{src → lib}/uri/druby.rb +1 -1
- data/{src → lib}/uri/file.rb +1 -1
- data/{src → lib}/uri/ftp_ex.rb +1 -1
- data/{src → lib}/uri/http_ex.rb +1 -1
- data/{src → lib}/uri/pgsql.rb +1 -1
- data/{src → lib}/uri/ssh.rb +0 -0
- data/{src → lib}/uri/svn.rb +1 -1
- data/{src → lib}/uri_ex.rb +1 -1
- data/{src → lib}/verbose_object.rb +1 -1
- data/{src → lib}/yaml/basenode_ext.rb +1 -1
- data/{src → lib}/yaml/chop_header.rb +0 -0
- data/{src → lib}/yaml/transform.rb +1 -1
- data/{src → lib}/yaml/yregexpath.rb +1 -1
- data/test/sanity/multiple-requires.yml +1 -1
- data/test/sanity/single-requires.yml +3 -3
- data/test/test-unit-setup.rb +3 -1
- data/test/unit-suite.yml +2 -2
- metadata +92 -181
- data/SPEC.gem.yml +0 -269
data/ChangeLog
CHANGED
@@ -1,3 +1,35 @@
|
|
1
|
+
2005-06-05 Nicolas Pouillard <ertai@lrde.epita.fr>
|
2
|
+
|
3
|
+
* core_ex/SPEC.dyn.yml: Release 0.1.3.
|
4
|
+
* core_ex/test/unit-suite.yml: Use verbose, and core_ex modes.
|
5
|
+
* core_ex/lib/core_ex/time.rb: Fix requires.
|
6
|
+
* core_ex/test/test-unit-setup.rb: Fix requires, changed the
|
7
|
+
svn:executable property.
|
8
|
+
|
9
|
+
2005-06-05 Nicolas Pouillard <ertai@lrde.epita.fr>
|
10
|
+
|
11
|
+
* core_ex/lib/core_ex/rakefile_base.rf: Use the ruby format to stock
|
12
|
+
the gem specifiations.
|
13
|
+
* SPEC.yml: Update.
|
14
|
+
|
15
|
+
2005-06-05 Nicolas Pouillard <ertai@lrde.epita.fr>
|
16
|
+
|
17
|
+
* src: Rename to ...
|
18
|
+
* lib: ... this.
|
19
|
+
* SPEC.yml: Update dependencies.
|
20
|
+
|
21
|
+
2005-06-05 Nicolas Pouillard <ertai@lrde.epita.fr>
|
22
|
+
|
23
|
+
* core_ex/lib/core_ex/require.rb: No more use @required but $".
|
24
|
+
* core_ex/lib/core_ex.rb: Fix a $" usage.
|
25
|
+
|
26
|
+
2005-06-03 Nicolas Pouillard <ertai@lrde.epita.fr>
|
27
|
+
|
28
|
+
* core_ex/lib/core_ex/rakefile_base.rf:
|
29
|
+
Use the `rubyforge_sub_package_name' value to release in the proper,
|
30
|
+
section.
|
31
|
+
* core_ex/SPEC.yml, SPEC.yml: Add `rubyforge_sub_package_name'.
|
32
|
+
|
1
33
|
2005-06-03 Nicolas Pouillard <ertai@lrde.epita.fr>
|
2
34
|
|
3
35
|
* SPEC.dyn.yml: New release.
|
data/SPEC.dyn.yml
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
--- !ruby/object:OpenStruct
|
2
2
|
table:
|
3
|
-
:date: "
|
4
|
-
:version_id: ''
|
3
|
+
:date: "Sun, 05 Jun 2005"
|
5
4
|
:version: !ruby/object:Version
|
6
|
-
build:
|
5
|
+
build: 2
|
7
6
|
major: 0
|
8
7
|
minor: 1
|
9
|
-
revision:
|
8
|
+
revision: 282
|
9
|
+
:version_id: ''
|
10
10
|
:url: svn://svn.feydakins.org/ruby_ex/trunk
|
data/SPEC.yml
CHANGED
data/{src → lib}/abstract.rb
RENAMED
File without changes
|
data/{src → lib}/algorithms.rb
RENAMED
@@ -1,7 +1,7 @@
|
|
1
1
|
# Copyright:: Copyright (c) 2005 Nicolas Pouillard. All rights reserved.
|
2
2
|
# Author:: Nicolas Pouillard <ertai@lrde.epita.fr>.
|
3
3
|
# License:: Gnu General Public License.
|
4
|
-
# Revision:: $Id: algorithms.rb
|
4
|
+
# Revision:: $Id: algorithms.rb 279 2005-06-05 17:46:53Z ertai $
|
5
5
|
|
6
6
|
require 'module/autoload_tree'
|
7
7
|
|
data/{src → lib}/ask.rb
RENAMED
@@ -1,7 +1,7 @@
|
|
1
1
|
# Author:: Nicolas Pouillard <ertai@lrde.epita.fr>.
|
2
2
|
# Copyright:: Copyright (c) 2004, 2005 Nicolas Pouillard. All rights reserved.
|
3
3
|
# License:: GNU General Public License (GPL).
|
4
|
-
# Revision:: $Id: ask.rb
|
4
|
+
# Revision:: $Id: ask.rb 279 2005-06-05 17:46:53Z ertai $
|
5
5
|
|
6
6
|
require 'ruby_ex'
|
7
7
|
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# Copyright:: Copyright (c) 2004, 2005 Nicolas Pouillard. All rights reserved.
|
2
2
|
# Author:: Nicolas Pouillard <ertai@lrde.epita.fr>.
|
3
3
|
# License:: Gnu General Public License.
|
4
|
-
# Revision:: $Id: attributed_class.rb
|
4
|
+
# Revision:: $Id: attributed_class.rb 279 2005-06-05 17:46:53Z ertai $
|
5
5
|
|
6
6
|
|
7
7
|
require 'ruby_ex'
|
data/{src → lib}/cache.rb
RENAMED
@@ -3,7 +3,7 @@
|
|
3
3
|
# License: Gnu General Public License.
|
4
4
|
|
5
5
|
# $LastChangedBy: ertai $
|
6
|
-
# $Id: cache.rb
|
6
|
+
# $Id: cache.rb 279 2005-06-05 17:46:53Z ertai $
|
7
7
|
|
8
8
|
|
9
9
|
require 'ruby_ex'
|
@@ -103,7 +103,7 @@ class Cache
|
|
103
103
|
p.chmod(perm)
|
104
104
|
@atime << p
|
105
105
|
adjust_size
|
106
|
-
|
106
|
+
p
|
107
107
|
end
|
108
108
|
end
|
109
109
|
|
@@ -323,6 +323,7 @@ class CacheTest < Test::Unit::TestCase
|
|
323
323
|
end
|
324
324
|
|
325
325
|
assert(p1)
|
326
|
+
assert(p1.exist?, 'file exist?')
|
326
327
|
assert_equal(p1.md5sum.to_s, p1.basename.to_s, 'bad md5 open')
|
327
328
|
assert_equal(1, cache.nb_files, 'bad nb_files')
|
328
329
|
assert_equal(p1, cache[0])
|
data/{src → lib}/checkout.rb
RENAMED
@@ -2,8 +2,8 @@
|
|
2
2
|
# Author: Nicolas Despres <polrop@lrde.epita.fr>.
|
3
3
|
# License: Gnu General Public License.
|
4
4
|
|
5
|
-
# $LastChangedBy:
|
6
|
-
# $Id: checkout.rb
|
5
|
+
# $LastChangedBy: ertai $
|
6
|
+
# $Id: checkout.rb 279 2005-06-05 17:46:53Z ertai $
|
7
7
|
|
8
8
|
require 'uri_ex'
|
9
9
|
require 'uri/http_ex'
|
data/{src → lib}/choose.rb
RENAMED
@@ -1,7 +1,7 @@
|
|
1
1
|
# Author:: Nicolas Pouillard <ertai@lrde.epita.fr>.
|
2
2
|
# Copyright:: Copyright (c) 2005 Nicolas Pouillard. All rights reserved.
|
3
3
|
# License:: GNU General Public License (GPL).
|
4
|
-
# Revision:: $Id: choose.rb
|
4
|
+
# Revision:: $Id: choose.rb 279 2005-06-05 17:46:53Z ertai $
|
5
5
|
|
6
6
|
|
7
7
|
require 'random_generators'
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# Author:: Nicolas Pouillard <ertai@lrde.epita.fr>.
|
2
2
|
# Copyright:: Copyright (c) 2005 Nicolas Pouillard. All rights reserved.
|
3
3
|
# License:: GNU General Public License (GPL).
|
4
|
-
# Revision:: $Id: command.rb
|
4
|
+
# Revision:: $Id: command.rb 279 2005-06-05 17:46:53Z ertai $
|
5
5
|
|
6
6
|
require 'commands'
|
7
7
|
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# Author:: Nicolas Pouillard <ertai@lrde.epita.fr>.
|
2
2
|
# Copyright:: Copyright (c) 2005 Nicolas Pouillard. All rights reserved.
|
3
3
|
# License:: GNU General Public License (GPL).
|
4
|
-
# Revision:: $Id: composite.rb
|
4
|
+
# Revision:: $Id: composite.rb 279 2005-06-05 17:46:53Z ertai $
|
5
5
|
|
6
6
|
require 'commands'
|
7
7
|
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# Author:: Nicolas Pouillard <ertai@lrde.epita.fr>.
|
2
2
|
# Copyright:: Copyright (c) 2005 Nicolas Pouillard. All rights reserved.
|
3
3
|
# License:: GNU General Public License (GPL).
|
4
|
-
# Revision:: $Id: data.rb
|
4
|
+
# Revision:: $Id: data.rb 279 2005-06-05 17:46:53Z ertai $
|
5
5
|
|
6
6
|
require 'commands'
|
7
7
|
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# Author:: Nicolas Pouillard <ertai@lrde.epita.fr>.
|
2
2
|
# Copyright:: Copyright (c) 2005 Nicolas Pouillard. All rights reserved.
|
3
3
|
# License:: GNU General Public License (GPL).
|
4
|
-
# Revision:: $Id: factory.rb
|
4
|
+
# Revision:: $Id: factory.rb 279 2005-06-05 17:46:53Z ertai $
|
5
5
|
|
6
6
|
require 'commands'
|
7
7
|
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# Author:: Nicolas Pouillard <ertai@lrde.epita.fr>.
|
2
2
|
# Copyright:: Copyright (c) 2005 Nicolas Pouillard. All rights reserved.
|
3
3
|
# License:: GNU General Public License (GPL).
|
4
|
-
# Revision:: $Id: temp.rb
|
4
|
+
# Revision:: $Id: temp.rb 279 2005-06-05 17:46:53Z ertai $
|
5
5
|
|
6
6
|
require 'commands'
|
7
7
|
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# Author:: Nicolas Pouillard <ertai@lrde.epita.fr>.
|
2
2
|
# Copyright:: Copyright (c) 2005 Nicolas Pouillard. All rights reserved.
|
3
3
|
# License:: GNU General Public License (GPL).
|
4
|
-
# Revision:: $Id: datas.rb
|
4
|
+
# Revision:: $Id: datas.rb 279 2005-06-05 17:46:53Z ertai $
|
5
5
|
|
6
6
|
require 'commands'
|
7
7
|
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# Author:: Nicolas Pouillard <ertai@lrde.epita.fr>.
|
2
2
|
# Copyright:: Copyright (c) 2005 Nicolas Pouillard. All rights reserved.
|
3
3
|
# License:: GNU General Public License (GPL).
|
4
|
-
# Revision:: $Id: factory.rb
|
4
|
+
# Revision:: $Id: factory.rb 279 2005-06-05 17:46:53Z ertai $
|
5
5
|
|
6
6
|
require 'commands'
|
7
7
|
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# Author:: Nicolas Pouillard <ertai@lrde.epita.fr>.
|
2
2
|
# Copyright:: Copyright (c) 2005 Nicolas Pouillard. All rights reserved.
|
3
3
|
# License:: GNU General Public License (GPL).
|
4
|
-
# Revision:: $Id: helpers.rb
|
4
|
+
# Revision:: $Id: helpers.rb 279 2005-06-05 17:46:53Z ertai $
|
5
5
|
|
6
6
|
require 'commands'
|
7
7
|
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# Author:: Nicolas Pouillard <ertai@lrde.epita.fr>.
|
2
2
|
# Copyright:: Copyright (c) 2005 Nicolas Pouillard. All rights reserved.
|
3
3
|
# License:: GNU General Public License (GPL).
|
4
|
-
# Revision:: $Id: pipe.rb
|
4
|
+
# Revision:: $Id: pipe.rb 279 2005-06-05 17:46:53Z ertai $
|
5
5
|
|
6
6
|
require 'commands'
|
7
7
|
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# Author:: Nicolas Pouillard <ertai@lrde.epita.fr>.
|
2
2
|
# Copyright:: Copyright (c) 2005 Nicolas Pouillard. All rights reserved.
|
3
3
|
# License:: GNU General Public License (GPL).
|
4
|
-
# Revision:: $Id: exec.rb
|
4
|
+
# Revision:: $Id: exec.rb 279 2005-06-05 17:46:53Z ertai $
|
5
5
|
|
6
6
|
require 'commands'
|
7
7
|
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# Author:: Nicolas Pouillard <ertai@lrde.epita.fr>.
|
2
2
|
# Copyright:: Copyright (c) 2005 Nicolas Pouillard. All rights reserved.
|
3
3
|
# License:: GNU General Public License (GPL).
|
4
|
-
# Revision:: $Id: fork.rb
|
4
|
+
# Revision:: $Id: fork.rb 279 2005-06-05 17:46:53Z ertai $
|
5
5
|
|
6
6
|
require 'commands'
|
7
7
|
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# Author:: Nicolas Pouillard <ertai@lrde.epita.fr>.
|
2
2
|
# Copyright:: Copyright (c) 2005 Nicolas Pouillard. All rights reserved.
|
3
3
|
# License:: GNU General Public License (GPL).
|
4
|
-
# Revision:: $Id: runner.rb
|
4
|
+
# Revision:: $Id: runner.rb 279 2005-06-05 17:46:53Z ertai $
|
5
5
|
|
6
6
|
require 'commands'
|
7
7
|
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# Author:: Nicolas Pouillard <ertai@lrde.epita.fr>.
|
2
2
|
# Copyright:: Copyright (c) 2005 Nicolas Pouillard. All rights reserved.
|
3
3
|
# License:: GNU General Public License (GPL).
|
4
|
-
# Revision:: $Id: system.rb
|
4
|
+
# Revision:: $Id: system.rb 279 2005-06-05 17:46:53Z ertai $
|
5
5
|
|
6
6
|
require 'commands'
|
7
7
|
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# Author:: Nicolas Pouillard <ertai@lrde.epita.fr>.
|
2
2
|
# Copyright:: Copyright (c) 2005 Nicolas Pouillard. All rights reserved.
|
3
3
|
# License:: GNU General Public License (GPL).
|
4
|
-
# Revision:: $Id: runners.rb
|
4
|
+
# Revision:: $Id: runners.rb 279 2005-06-05 17:46:53Z ertai $
|
5
5
|
|
6
6
|
require 'commands'
|
7
7
|
|
data/{src → lib}/commands/seq.rb
RENAMED
@@ -1,7 +1,7 @@
|
|
1
1
|
# Author:: Nicolas Pouillard <ertai@lrde.epita.fr>.
|
2
2
|
# Copyright:: Copyright (c) 2005 Nicolas Pouillard. All rights reserved.
|
3
3
|
# License:: GNU General Public License (GPL).
|
4
|
-
# Revision:: $Id: seq.rb
|
4
|
+
# Revision:: $Id: seq.rb 279 2005-06-05 17:46:53Z ertai $
|
5
5
|
|
6
6
|
require 'commands'
|
7
7
|
|
data/{src → lib}/commands.rb
RENAMED
@@ -1,7 +1,7 @@
|
|
1
1
|
# Author:: Nicolas Pouillard <ertai@lrde.epita.fr>.
|
2
2
|
# Copyright:: Copyright (c) 2005 Nicolas Pouillard. All rights reserved.
|
3
3
|
# License:: GNU General Public License (GPL).
|
4
|
-
# Revision:: $Id: commands.rb
|
4
|
+
# Revision:: $Id: commands.rb 279 2005-06-05 17:46:53Z ertai $
|
5
5
|
|
6
6
|
require 'ruby_ex'
|
7
7
|
require 'module/autoload_tree'
|
data/{src → lib}/config_file.rb
RENAMED
data/{src → lib}/const_regexp.rb
RENAMED
data/{src → lib}/daemon.rb
RENAMED
data/{src → lib}/diff.rb
RENAMED
data/{src → lib}/dlogger.rb
RENAMED
@@ -2,8 +2,8 @@
|
|
2
2
|
# Author: Nicolas Despres <polrop@lrde.epita.fr>.
|
3
3
|
# License: Gnu General Public License.
|
4
4
|
|
5
|
-
# $LastChangedBy:
|
6
|
-
# $Id: drb_observable_pool.rb
|
5
|
+
# $LastChangedBy: ertai $
|
6
|
+
# $Id: drb_observable_pool.rb 279 2005-06-05 17:46:53Z ertai $
|
7
7
|
|
8
8
|
|
9
9
|
require 'observable_pool'
|
data/{src → lib}/drb_ex.rb
RENAMED
@@ -1,7 +1,7 @@
|
|
1
1
|
# Copyright:: Copyright (c) 2005 Nicolas Pouillard. All rights reserved.
|
2
2
|
# Author:: Nicolas Pouillard <ertai@lrde.epita.fr>.
|
3
3
|
# License:: Gnu General Public License.
|
4
|
-
# Revision:: $Id: drb_ex.rb
|
4
|
+
# Revision:: $Id: drb_ex.rb 279 2005-06-05 17:46:53Z ertai $
|
5
5
|
|
6
6
|
require 'module/autoload_tree'
|
7
7
|
|
data/{src → lib}/filetype.rb
RENAMED
File without changes
|
data/{src → lib}/generate_id.rb
RENAMED
@@ -1,7 +1,7 @@
|
|
1
1
|
# Copyright:: Copyright (c) 2004 Nicolas Despres. All rights reserved.
|
2
2
|
# Author:: Nicolas Despres <polrop@lrde.epita.fr>.
|
3
3
|
# License:: Gnu General Public License.
|
4
|
-
# Revision:: $Id: generate_id.rb
|
4
|
+
# Revision:: $Id: generate_id.rb 279 2005-06-05 17:46:53Z ertai $
|
5
5
|
|
6
6
|
|
7
7
|
require 'ruby_ex'
|
data/{src → lib}/histogram.rb
RENAMED
@@ -1,7 +1,7 @@
|
|
1
1
|
# Copyright:: Copyright (c) 2005 Nicolas Pouillard. All rights reserved.
|
2
2
|
# Author:: Nicolas Pouillard <ertai@lrde.epita.fr>.
|
3
3
|
# License:: Gnu General Public License.
|
4
|
-
# Revision:: $Id: histogram.rb
|
4
|
+
# Revision:: $Id: histogram.rb 279 2005-06-05 17:46:53Z ertai $
|
5
5
|
|
6
6
|
require 'ruby_ex'
|
7
7
|
|
data/{src → lib}/hookable.rb
RENAMED
@@ -1,7 +1,7 @@
|
|
1
1
|
# Copyright:: Copyright (c) 2005 Nicolas Pouillard. All rights reserved.
|
2
2
|
# Author:: Nicolas Pouillard <ertai@lrde.epita.fr>.
|
3
3
|
# License:: Gnu General Public License.
|
4
|
-
# Revision:: $Id: hookable.rb
|
4
|
+
# Revision:: $Id: hookable.rb 279 2005-06-05 17:46:53Z ertai $
|
5
5
|
|
6
6
|
require 'ruby_ex'
|
7
7
|
require 'hooker'
|
data/{src → lib}/hooker.rb
RENAMED
@@ -1,7 +1,7 @@
|
|
1
1
|
# Copyright:: Copyright (c) 2005 Nicolas Pouillard. All rights reserved.
|
2
2
|
# Author:: Nicolas Pouillard <ertai@lrde.epita.fr>.
|
3
3
|
# License:: Gnu General Public License.
|
4
|
-
# Revision:: $Id: hooker.rb
|
4
|
+
# Revision:: $Id: hooker.rb 279 2005-06-05 17:46:53Z ertai $
|
5
5
|
|
6
6
|
require 'rubygems'
|
7
7
|
require_gem 'activesupport'
|
data/{src → lib}/indexed_node.rb
RENAMED
File without changes
|
data/{src → lib}/io_marshal.rb
RENAMED
data/{src → lib}/ioo.rb
RENAMED
data/{src → lib}/labeled_node.rb
RENAMED
File without changes
|
data/{src → lib}/md5sum.rb
RENAMED
data/{src → lib}/node.rb
RENAMED
File without changes
|
data/{src → lib}/observable.rb
RENAMED