ioblockreader 1.0.0.20130611 → 1.0.1.20130611

Sign up to get free protection for your applications and to get access to all the features.
data/AUTHORS CHANGED
@@ -1,3 +1,4 @@
1
1
  = Muriel Salvan (muriel@x-aeon.com)
2
2
 
3
3
  * 1.0.0.20130611
4
+ * 1.0.1.20130611
data/ChangeLog CHANGED
@@ -1,5 +1,11 @@
1
1
  = IOBlockReader Release History
2
2
 
3
+ == 1.0.1.20130611 (Beta)
4
+
5
+ * Adapted test suite for Ruby 1.8
6
+ * Removed useless force_encoding
7
+ * Better Markdown
8
+
3
9
  == 1.0.0.20130611 (Beta)
4
10
 
5
11
  * Initial public release.
data/ReleaseInfo CHANGED
@@ -2,7 +2,7 @@
2
2
  # This file has been generated by RubyPackager during a delivery.
3
3
  # More info about RubyPackager: http://rubypackager.sourceforge.net
4
4
  {
5
- :version => '1.0.0.20130611',
5
+ :version => '1.0.1.20130611',
6
6
  :tags => [ 'Beta' ],
7
7
  :dev_status => 'Beta'
8
8
  }
@@ -22,7 +22,7 @@ module IOBlockReader
22
22
  def initialize
23
23
  @offset = nil
24
24
  @last_access_time = nil
25
- @data = ''.force_encoding('ASCII-8BIT')
25
+ @data = ''
26
26
  end
27
27
 
28
28
  # Fill the data block for a given IO
@@ -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
- # ** *: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]
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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ioblockreader
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.20130611
4
+ version: 1.0.1.20130611
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: