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 CHANGED
@@ -1,4 +1,8 @@
1
1
 
2
+ Madeleine 0.7.3 (June 11, 2006):
3
+
4
+ * Fixed missing binmode, causing self-test to fail on win32
5
+
2
6
  Madeleine 0.7.2 (May 29, 2006):
3
7
 
4
8
  * An automatic class with no methods would cause an error
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.sourceforge.net/>
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.sourceforge.net/>
56
+ <http://madeleine.rubyforge.org/>
57
57
 
58
58
  Questions, bug reports, patches, complaints? Use the mailing list:
59
- <http://lists.sourceforge.net/lists/listinfo/madeleine-devel>
59
+ <http://rubyforge.org/mailman/listinfo/madeleine-devel>
60
60
 
61
61
  License:
62
62
 
@@ -23,7 +23,7 @@ module Madeleine
23
23
  require 'madeleine/files'
24
24
  require 'madeleine/sanity'
25
25
 
26
- MADELEINE_VERSION = "0.7.2"
26
+ MADELEINE_VERSION = "0.7.3"
27
27
 
28
28
  class SnapshotMadeleine
29
29
 
@@ -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.2
7
- date: 2006-05-29 00:00:00 +02:00
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.sourceforge.net
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