ioblockreader 1.0.0.20130611 → 1.0.1.20130611
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/AUTHORS +1 -0
- data/ChangeLog +6 -0
- data/ReleaseInfo +1 -1
- data/lib/ioblockreader/datablock.rb +1 -1
- data/lib/ioblockreader/ioblockreader.rb +2 -2
- metadata +1 -1
data/AUTHORS
CHANGED
data/ChangeLog
CHANGED
data/ReleaseInfo
CHANGED
@@ -11,8 +11,8 @@ module IOBlockReader
|
|
11
11
|
# Parameters::
|
12
12
|
# * *io* (_IO_): The IO object used to give the String interface
|
13
13
|
# * *options* (<em>map<Symbol,Object></em>): Additional options:
|
14
|
-
#
|
15
|
-
#
|
14
|
+
# * *:block_size* (_Fixnum_): The block size in bytes used internally. [default = 268435456]
|
15
|
+
# * *:blocks_in_memory* (_Fixnum_): Maximal number of blocks in memory. If it is required to load more blocks than this value for a single operation, this value is ignored. [default = 2]
|
16
16
|
def initialize(io, options = {})
|
17
17
|
# The underlying IO
|
18
18
|
@io = io
|