ruby_ex 0.1.1 → 0.1.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.
Files changed (96) hide show
  1. data/ChangeLog +32 -0
  2. data/SPEC.dyn.yml +4 -4
  3. data/SPEC.yml +2 -2
  4. data/{src → lib}/abstract.rb +1 -1
  5. data/{src → lib}/abstract_node.rb +1 -1
  6. data/{src → lib}/algorithms/simulated_annealing.rb +0 -0
  7. data/{src → lib}/algorithms.rb +1 -1
  8. data/{src → lib}/ask.rb +1 -1
  9. data/{src → lib}/attributed_class.rb +1 -1
  10. data/{src → lib}/cache.rb +3 -2
  11. data/{src → lib}/checkout.rb +2 -2
  12. data/{src → lib}/choose.rb +1 -1
  13. data/{src → lib}/commands/command.rb +1 -1
  14. data/{src → lib}/commands/datas/composite.rb +1 -1
  15. data/{src → lib}/commands/datas/data.rb +1 -1
  16. data/{src → lib}/commands/datas/factory.rb +1 -1
  17. data/{src → lib}/commands/datas/temp.rb +1 -1
  18. data/{src → lib}/commands/datas.rb +1 -1
  19. data/{src → lib}/commands/factory.rb +1 -1
  20. data/{src → lib}/commands/helpers.rb +1 -1
  21. data/{src → lib}/commands/pipe.rb +1 -1
  22. data/{src → lib}/commands/runners/exec.rb +1 -1
  23. data/{src → lib}/commands/runners/fork.rb +1 -1
  24. data/{src → lib}/commands/runners/runner.rb +1 -1
  25. data/{src → lib}/commands/runners/system.rb +1 -1
  26. data/{src → lib}/commands/runners.rb +1 -1
  27. data/{src → lib}/commands/seq.rb +1 -1
  28. data/{src → lib}/commands.rb +1 -1
  29. data/{src → lib}/config_file.rb +1 -1
  30. data/{src → lib}/const_regexp.rb +1 -1
  31. data/{src → lib}/daemon.rb +1 -1
  32. data/{src → lib}/diff.rb +1 -1
  33. data/{src → lib}/dlogger.rb +1 -1
  34. data/{src → lib}/drb/drb_observable.rb +1 -1
  35. data/{src → lib}/drb/drb_observable_pool.rb +2 -2
  36. data/{src → lib}/drb/drb_service.rb +1 -1
  37. data/{src → lib}/drb/drb_undumped_attributes.rb +1 -1
  38. data/{src → lib}/drb/drb_undumped_indexed_object.rb +1 -1
  39. data/{src → lib}/drb/insecure_protected_methods.rb +1 -1
  40. data/{src → lib}/drb_ex.rb +1 -1
  41. data/{src → lib}/dumpable_proc.rb +1 -1
  42. data/{src → lib}/filetype.rb +0 -0
  43. data/{src → lib}/generate_id.rb +1 -1
  44. data/{src → lib}/histogram.rb +1 -1
  45. data/{src → lib}/hookable.rb +1 -1
  46. data/{src → lib}/hooker.rb +1 -1
  47. data/{src → lib}/indexed_node.rb +0 -0
  48. data/{src → lib}/io_marshal.rb +1 -1
  49. data/{src → lib}/ioo.rb +1 -1
  50. data/{src → lib}/labeled_node.rb +0 -0
  51. data/{src → lib}/logger_observer.rb +1 -1
  52. data/{src → lib}/md5sum.rb +1 -1
  53. data/{src → lib}/module/autoload_tree.rb +1 -1
  54. data/{src → lib}/module/hierarchy.rb +1 -1
  55. data/{src → lib}/module/instance_method_visibility.rb +1 -1
  56. data/{src → lib}/node.rb +0 -0
  57. data/{src → lib}/object_monitor.rb +1 -1
  58. data/{src → lib}/object_monitor_activity.rb +1 -1
  59. data/{src → lib}/observable.rb +1 -1
  60. data/{src → lib}/observable_pool.rb +1 -1
  61. data/{src → lib}/orderedhash.rb +1 -1
  62. data/{src → lib}/pp_hierarchy.rb +0 -0
  63. data/{src → lib}/random_generators/random_generator.rb +1 -1
  64. data/{src → lib}/random_generators/ruby.rb +1 -1
  65. data/{src → lib}/random_generators.rb +1 -1
  66. data/{src → lib}/ruby_ex.rb +1 -1
  67. data/{src → lib}/safe_eval.rb +1 -1
  68. data/{src → lib}/sendmail.rb +0 -0
  69. data/{src → lib}/service_manager.rb +1 -1
  70. data/{src → lib}/shuffle.rb +1 -1
  71. data/{src → lib}/spring.rb +1 -1
  72. data/{src → lib}/spring_set.rb +1 -1
  73. data/{src → lib}/symtbl.rb +1 -1
  74. data/{src → lib}/synflow.rb +0 -0
  75. data/{src → lib}/thread_mutex.rb +0 -0
  76. data/{src → lib}/timeout_ex.rb +1 -1
  77. data/{src → lib}/trace.rb +2 -2
  78. data/{src → lib}/uri/druby.rb +1 -1
  79. data/{src → lib}/uri/file.rb +1 -1
  80. data/{src → lib}/uri/ftp_ex.rb +1 -1
  81. data/{src → lib}/uri/http_ex.rb +1 -1
  82. data/{src → lib}/uri/pgsql.rb +1 -1
  83. data/{src → lib}/uri/ssh.rb +0 -0
  84. data/{src → lib}/uri/svn.rb +1 -1
  85. data/{src → lib}/uri_ex.rb +1 -1
  86. data/{src → lib}/verbose_object.rb +1 -1
  87. data/{src → lib}/yaml/basenode_ext.rb +1 -1
  88. data/{src → lib}/yaml/chop_header.rb +0 -0
  89. data/{src → lib}/yaml/transform.rb +1 -1
  90. data/{src → lib}/yaml/yregexpath.rb +1 -1
  91. data/test/sanity/multiple-requires.yml +1 -1
  92. data/test/sanity/single-requires.yml +3 -3
  93. data/test/test-unit-setup.rb +3 -1
  94. data/test/unit-suite.yml +2 -2
  95. metadata +92 -181
  96. 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: "Fri, 03 Jun 2005"
4
- :version_id: ''
3
+ :date: "Sun, 05 Jun 2005"
5
4
  :version: !ruby/object:Version
6
- build: 1
5
+ build: 2
7
6
  major: 0
8
7
  minor: 1
9
- revision: 276
8
+ revision: 282
9
+ :version_id: ''
10
10
  :url: svn://svn.feydakins.org/ruby_ex/trunk
data/SPEC.yml CHANGED
@@ -25,12 +25,12 @@ rdoc_files: !filelist
25
25
  - src/**/*.rb
26
26
 
27
27
  pkg_files: !filelist
28
- - src/**/*.rb
28
+ - lib/**/*.rb
29
29
  - test/**/*
30
30
  - '[A-Z]*'
31
31
 
32
32
  dependencies:
33
- core_ex: ~> 0.1.2
33
+ core_ex: ~> 0.1.3
34
34
  activesupport: ~> 1.0.4
35
35
  # ttk: ~> 0.2.0
36
36
 
@@ -3,7 +3,7 @@
3
3
  # License: Gnu General Public License.
4
4
 
5
5
  # $LastChangedBy: ertai $
6
- # $Id: abstract.rb 266 2005-06-01 14:27:18Z ertai $
6
+ # $Id: abstract.rb 279 2005-06-05 17:46:53Z ertai $
7
7
 
8
8
 
9
9
  #FIXME: find a way to be thread safe.
@@ -3,7 +3,7 @@
3
3
  # License: Gnu General Public License.
4
4
 
5
5
  # $LastChangedBy: ertai $
6
- # $Id: abstract_node.rb 266 2005-06-01 14:27:18Z ertai $
6
+ # $Id: abstract_node.rb 279 2005-06-05 17:46:53Z ertai $
7
7
 
8
8
 
9
9
  require 'ruby_ex'
File without changes
@@ -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 258 2005-06-01 00:22:51Z ertai $
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 266 2005-06-01 14:27:18Z ertai $
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 266 2005-06-01 14:27:18Z ertai $
4
+ # Revision:: $Id: attributed_class.rb 279 2005-06-05 17:46:53Z ertai $
5
5
 
6
6
 
7
7
  require 'ruby_ex'
@@ -3,7 +3,7 @@
3
3
  # License: Gnu General Public License.
4
4
 
5
5
  # $LastChangedBy: ertai $
6
- # $Id: cache.rb 273 2005-06-03 00:00:26Z ertai $
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
- return p
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])
@@ -2,8 +2,8 @@
2
2
  # Author: Nicolas Despres <polrop@lrde.epita.fr>.
3
3
  # License: Gnu General Public License.
4
4
 
5
- # $LastChangedBy: polrop $
6
- # $Id: checkout.rb 159 2005-02-18 12:07:23Z polrop $
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'
@@ -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 258 2005-06-01 00:22:51Z ertai $
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 255 2005-06-01 00:08:46Z ertai $
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 255 2005-06-01 00:08:46Z ertai $
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 255 2005-06-01 00:08:46Z ertai $
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 255 2005-06-01 00:08:46Z ertai $
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 255 2005-06-01 00:08:46Z ertai $
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 255 2005-06-01 00:08:46Z ertai $
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 255 2005-06-01 00:08:46Z ertai $
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 255 2005-06-01 00:08:46Z ertai $
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 255 2005-06-01 00:08:46Z ertai $
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 255 2005-06-01 00:08:46Z ertai $
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 255 2005-06-01 00:08:46Z ertai $
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 255 2005-06-01 00:08:46Z ertai $
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 255 2005-06-01 00:08:46Z ertai $
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 255 2005-06-01 00:08:46Z ertai $
4
+ # Revision:: $Id: runners.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: seq.rb 255 2005-06-01 00:08:46Z ertai $
4
+ # Revision:: $Id: seq.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: commands.rb 266 2005-06-01 14:27:18Z ertai $
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'
@@ -3,7 +3,7 @@
3
3
  # License: Gnu General Public License.
4
4
 
5
5
  # $LastChangedBy: ertai $
6
- # $Id: config_file.rb 266 2005-06-01 14:27:18Z ertai $
6
+ # $Id: config_file.rb 279 2005-06-05 17:46:53Z ertai $
7
7
 
8
8
 
9
9
  require 'ruby_ex'
@@ -3,7 +3,7 @@
3
3
  # License: Gnu General Public License.
4
4
 
5
5
  # $LastChangedBy: ertai $
6
- # $Id: const_regexp.rb 266 2005-06-01 14:27:18Z ertai $
6
+ # $Id: const_regexp.rb 279 2005-06-05 17:46:53Z ertai $
7
7
 
8
8
  require 'ruby_ex'
9
9
 
@@ -3,7 +3,7 @@
3
3
  # License: Gnu General Public License.
4
4
 
5
5
  # $LastChangedBy: ertai $
6
- # $Id: daemon.rb 266 2005-06-01 14:27:18Z ertai $
6
+ # $Id: daemon.rb 279 2005-06-05 17:46:53Z ertai $
7
7
 
8
8
 
9
9
  require 'pathname'
@@ -3,7 +3,7 @@
3
3
  # License: Gnu General Public License.
4
4
 
5
5
  # $LastChangedBy: ertai $
6
- # $Id: diff.rb 266 2005-06-01 14:27:18Z ertai $
6
+ # $Id: diff.rb 279 2005-06-05 17:46:53Z ertai $
7
7
 
8
8
  require 'ruby_ex'
9
9
 
@@ -3,7 +3,7 @@
3
3
  # License: Gnu General Public License.
4
4
 
5
5
  # $LastChangedBy: ertai $
6
- # $Id: dlogger.rb 266 2005-06-01 14:27:18Z ertai $
6
+ # $Id: dlogger.rb 279 2005-06-05 17:46:53Z ertai $
7
7
 
8
8
  require 'ruby_ex'
9
9
  require 'logger'
@@ -3,7 +3,7 @@
3
3
  # License: Gnu General Public License.
4
4
 
5
5
  # $LastChangedBy: ertai $
6
- # $Id: drb_observable.rb 266 2005-06-01 14:27:18Z ertai $
6
+ # $Id: drb_observable.rb 279 2005-06-05 17:46:53Z ertai $
7
7
 
8
8
 
9
9
  require 'ruby_ex'
@@ -2,8 +2,8 @@
2
2
  # Author: Nicolas Despres <polrop@lrde.epita.fr>.
3
3
  # License: Gnu General Public License.
4
4
 
5
- # $LastChangedBy: polrop $
6
- # $Id: drb_observable_pool.rb 97 2005-01-13 18:20:49Z polrop $
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'
@@ -3,7 +3,7 @@
3
3
  # License:: Ruby license.
4
4
 
5
5
  # $LastChangedBy: ertai $
6
- # $Id: drb_service.rb 266 2005-06-01 14:27:18Z ertai $
6
+ # $Id: drb_service.rb 279 2005-06-05 17:46:53Z ertai $
7
7
 
8
8
 
9
9
  require 'ruby_ex'
@@ -3,7 +3,7 @@
3
3
  # License: Gnu General Public License.
4
4
 
5
5
  # $LastChangedBy: ertai $
6
- # $Id: drb_undumped_attributes.rb 266 2005-06-01 14:27:18Z ertai $
6
+ # $Id: drb_undumped_attributes.rb 279 2005-06-05 17:46:53Z ertai $
7
7
 
8
8
 
9
9
  require 'ruby_ex'
@@ -3,7 +3,7 @@
3
3
  # License:: Ruby license.
4
4
 
5
5
  # $LastChangedBy: ertai $
6
- # $Id: drb_undumped_indexed_object.rb 266 2005-06-01 14:27:18Z ertai $
6
+ # $Id: drb_undumped_indexed_object.rb 279 2005-06-05 17:46:53Z ertai $
7
7
 
8
8
 
9
9
  require 'ruby_ex'
@@ -3,7 +3,7 @@
3
3
  # License: Gnu General Public License.
4
4
 
5
5
  # $LastChangedBy: ertai $
6
- # $Id: insecure_protected_methods.rb 268 2005-06-02 12:39:07Z ertai $
6
+ # $Id: insecure_protected_methods.rb 279 2005-06-05 17:46:53Z ertai $
7
7
 
8
8
 
9
9
  require 'ruby_ex'
@@ -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 258 2005-06-01 00:22:51Z ertai $
4
+ # Revision:: $Id: drb_ex.rb 279 2005-06-05 17:46:53Z ertai $
5
5
 
6
6
  require 'module/autoload_tree'
7
7
 
@@ -3,7 +3,7 @@
3
3
  # License: Gnu General Public License.
4
4
 
5
5
  # $LastChangedBy: ertai $
6
- # $Id: dumpable_proc.rb 266 2005-06-01 14:27:18Z ertai $
6
+ # $Id: dumpable_proc.rb 279 2005-06-05 17:46:53Z ertai $
7
7
 
8
8
  require 'ruby_ex'
9
9
  require 'delegate'
File without changes
@@ -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 266 2005-06-01 14:27:18Z ertai $
4
+ # Revision:: $Id: generate_id.rb 279 2005-06-05 17:46:53Z ertai $
5
5
 
6
6
 
7
7
  require 'ruby_ex'
@@ -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 266 2005-06-01 14:27:18Z ertai $
4
+ # Revision:: $Id: histogram.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) 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 266 2005-06-01 14:27:18Z ertai $
4
+ # Revision:: $Id: hookable.rb 279 2005-06-05 17:46:53Z ertai $
5
5
 
6
6
  require 'ruby_ex'
7
7
  require 'hooker'
@@ -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 233 2005-05-17 08:35:52Z ertai $
4
+ # Revision:: $Id: hooker.rb 279 2005-06-05 17:46:53Z ertai $
5
5
 
6
6
  require 'rubygems'
7
7
  require_gem 'activesupport'
File without changes
@@ -3,7 +3,7 @@
3
3
  # License: Gnu General Public License.
4
4
 
5
5
  # $LastChangedBy: ertai $
6
- # $Id: io_marshal.rb 266 2005-06-01 14:27:18Z ertai $
6
+ # $Id: io_marshal.rb 279 2005-06-05 17:46:53Z ertai $
7
7
 
8
8
 
9
9
  require 'ruby_ex'
data/{src → lib}/ioo.rb RENAMED
@@ -3,7 +3,7 @@
3
3
  # License: Gnu General Public License.
4
4
 
5
5
  # $LastChangedBy: ertai $
6
- # $Id: ioo.rb 266 2005-06-01 14:27:18Z ertai $
6
+ # $Id: ioo.rb 279 2005-06-05 17:46:53Z ertai $
7
7
 
8
8
  require 'delegate'
9
9
  require 'ruby_ex'
File without changes
@@ -3,7 +3,7 @@
3
3
  # License: Gnu General Public License.
4
4
 
5
5
  # $LastChangedBy: ertai $
6
- # $Id: logger_observer.rb 266 2005-06-01 14:27:18Z ertai $
6
+ # $Id: logger_observer.rb 279 2005-06-05 17:46:53Z ertai $
7
7
 
8
8
 
9
9
  require 'ruby_ex'
@@ -3,7 +3,7 @@
3
3
  # License: Gnu General Public License.
4
4
 
5
5
  # $LastChangedBy: ertai $
6
- # $Id: md5sum.rb 266 2005-06-01 14:27:18Z ertai $
6
+ # $Id: md5sum.rb 279 2005-06-05 17:46:53Z ertai $
7
7
 
8
8
 
9
9
  require 'ruby_ex'
@@ -3,7 +3,7 @@
3
3
  # License: Gnu General Public License.
4
4
 
5
5
  # $LastChangedBy: ertai $
6
- # $Id: autoload_tree.rb 266 2005-06-01 14:27:18Z ertai $
6
+ # $Id: autoload_tree.rb 279 2005-06-05 17:46:53Z ertai $
7
7
 
8
8
 
9
9
  require 'ruby_ex'
@@ -3,7 +3,7 @@
3
3
  # License: Gnu General Public License.
4
4
 
5
5
  # $LastChangedBy: polrop $
6
- # $Id: hierarchy.rb 266 2005-06-01 14:27:18Z ertai $
6
+ # $Id: hierarchy.rb 279 2005-06-05 17:46:53Z ertai $
7
7
 
8
8
  require 'ruby_ex'
9
9
 
@@ -3,7 +3,7 @@
3
3
  # License: Gnu General Public License.
4
4
 
5
5
  # $LastChangedBy: polrop $
6
- # $Id: instance_method_visibility.rb 266 2005-06-01 14:27:18Z ertai $
6
+ # $Id: instance_method_visibility.rb 279 2005-06-05 17:46:53Z ertai $
7
7
 
8
8
  require 'ruby_ex'
9
9
 
File without changes
@@ -3,7 +3,7 @@
3
3
  # License: Gnu General Public License.
4
4
 
5
5
  # $LastChangedBy: ertai $
6
- # $Id: object_monitor.rb 266 2005-06-01 14:27:18Z ertai $
6
+ # $Id: object_monitor.rb 279 2005-06-05 17:46:53Z ertai $
7
7
 
8
8
 
9
9
  require 'ruby_ex'
@@ -3,7 +3,7 @@
3
3
  # License: Gnu General Public License.
4
4
 
5
5
  # $LastChangedBy: ertai $
6
- # $Id: object_monitor_activity.rb 266 2005-06-01 14:27:18Z ertai $
6
+ # $Id: object_monitor_activity.rb 279 2005-06-05 17:46:53Z ertai $
7
7
 
8
8
 
9
9
  require 'ruby_ex'
@@ -3,7 +3,7 @@
3
3
  # License: Gnu General Public License.
4
4
 
5
5
  # $LastChangedBy: ertai $
6
- # $Id: observable.rb 266 2005-06-01 14:27:18Z ertai $
6
+ # $Id: observable.rb 279 2005-06-05 17:46:53Z ertai $
7
7
 
8
8
 
9
9
  require 'ruby_ex'
@@ -3,7 +3,7 @@
3
3
  # License: Gnu General Public License.
4
4
 
5
5
  # $LastChangedBy: ertai $
6
- # $Id: observable_pool.rb 266 2005-06-01 14:27:18Z ertai $
6
+ # $Id: observable_pool.rb 279 2005-06-05 17:46:53Z ertai $
7
7
 
8
8
 
9
9
  require 'ruby_ex'