marshal_file 0.0.4 → 0.0.5

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 (2) hide show
  1. data/lib/marshal_file.rb +2 -2
  2. metadata +1 -1
@@ -3,13 +3,13 @@
3
3
  # ==== Write Example:
4
4
  # a = {1=>2, 3=>4}
5
5
  # c = {5=>6, 7=>8}
6
- # mf = SeqFile.new("test.marshal","write")
6
+ # mf = MarshalFile.new("test.marshal","write")
7
7
  # mf.write(a)
8
8
  # mf.write(c)
9
9
  # mf.close
10
10
  #
11
11
  # ==== Read Example:
12
- # mf = SeqFile.new("test.marshal")
12
+ # mf = MarshalFile.new("test.marshal")
13
13
  # while !mf.eof
14
14
  # puts mf.read
15
15
  # end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: marshal_file
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: