Learn more  » Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

vistahigherlearning / logstash   deb

Repository URL to install this package:

if RUBY_VERSION < '1.9.2'

# :stopdoc:
class IO
  def self.binread(name, length = nil, offset = nil)
    return File.read name unless length || offset
    File.open(name, 'rb') { |f|
      f.seek offset if offset
      f.read length
    }
  end
end
# :startdoc:

end