madeleine 0.7.2 → 0.7.3
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/NEWS +4 -0
- data/README +3 -3
- data/lib/madeleine.rb +1 -1
- data/lib/madeleine/sanity.rb +2 -1
- metadata +6 -6
data/NEWS
CHANGED
data/README
CHANGED
@@ -3,7 +3,7 @@ Madeleine is a Ruby implementation of Object Prevalence: Transparent
|
|
3
3
|
persistence of business objects using command logging and complete
|
4
4
|
system snapshots.
|
5
5
|
|
6
|
-
<http://madeleine.
|
6
|
+
<http://madeleine.rubyforge.org/>
|
7
7
|
|
8
8
|
Madeleine's design is based on Prevayler, the original Java
|
9
9
|
prevalence layer.
|
@@ -53,10 +53,10 @@ Known problems:
|
|
53
53
|
Contact:
|
54
54
|
|
55
55
|
Homepage:
|
56
|
-
<http://madeleine.
|
56
|
+
<http://madeleine.rubyforge.org/>
|
57
57
|
|
58
58
|
Questions, bug reports, patches, complaints? Use the mailing list:
|
59
|
-
<http://
|
59
|
+
<http://rubyforge.org/mailman/listinfo/madeleine-devel>
|
60
60
|
|
61
61
|
License:
|
62
62
|
|
data/lib/madeleine.rb
CHANGED
data/lib/madeleine/sanity.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
#
|
2
2
|
# Author:: Anders Bengtsson <ndrsbngtssn@yahoo.se>
|
3
|
-
# Copyright:: Copyright (c) 2004
|
3
|
+
# Copyright:: Copyright (c) 2004-2006
|
4
4
|
#
|
5
5
|
|
6
6
|
require 'tempfile'
|
@@ -36,6 +36,7 @@ module Madeleine
|
|
36
36
|
|
37
37
|
def file_check
|
38
38
|
Tempfile.open("madeleine_sanity") do |file|
|
39
|
+
file.binmode # Needed for win32
|
39
40
|
file.write(@testdata)
|
40
41
|
file.flush
|
41
42
|
open(file.path, 'rb') do |read_file|
|
metadata
CHANGED
@@ -3,13 +3,13 @@ rubygems_version: 0.8.11
|
|
3
3
|
specification_version: 1
|
4
4
|
name: madeleine
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 0.7.
|
7
|
-
date: 2006-
|
6
|
+
version: 0.7.3
|
7
|
+
date: 2006-06-11 00:00:00 +02:00
|
8
8
|
summary: Madeleine is a Ruby implementation of Object Prevalence
|
9
9
|
require_paths:
|
10
10
|
- lib
|
11
11
|
email: ndrsbngtssn@yahoo.se
|
12
|
-
homepage: http://madeleine.
|
12
|
+
homepage: http://madeleine.rubyforge.org
|
13
13
|
rubyforge_project:
|
14
14
|
description:
|
15
15
|
autorequire: madeleine
|
@@ -34,16 +34,16 @@ files:
|
|
34
34
|
- lib/madeleine/files.rb
|
35
35
|
- lib/madeleine/sanity.rb
|
36
36
|
- lib/madeleine/zmarshal.rb
|
37
|
-
- samples/clock_click.rb
|
38
37
|
- samples/dictionary_client.rb
|
38
|
+
- samples/clock_click.rb
|
39
39
|
- samples/dictionary_server.rb
|
40
40
|
- samples/painter.rb
|
41
|
+
- contrib/test_batched.rb
|
41
42
|
- contrib/batched.rb
|
42
43
|
- contrib/benchmark.rb
|
44
|
+
- contrib/threaded_benchmark.rb
|
43
45
|
- contrib/create_command.rb
|
44
|
-
- contrib/test_batched.rb
|
45
46
|
- contrib/test_scalability.rb
|
46
|
-
- contrib/threaded_benchmark.rb
|
47
47
|
- README
|
48
48
|
- NEWS
|
49
49
|
- COPYING
|