Sha256: 55c022ee5123f156a55a5adae8ed195f07a5c9c437e1f5bb1e8103e634b5fa78

Contents?: true

Size: 943 Bytes

Versions: 80

Compression:

Stored size: 943 Bytes

Contents

module Zip
  module IOExtras #:nodoc:

    CHUNK_SIZE = 131072

    RANGE_ALL = 0..-1

    class << self
      def copy_stream(ostream, istream)
        ostream.write(istream.read(CHUNK_SIZE, '')) until istream.eof?
      end

      def copy_stream_n(ostream, istream, nbytes)
        toread = nbytes
        while toread > 0 && !istream.eof?
          tr = toread > CHUNK_SIZE ? CHUNK_SIZE : toread
          ostream.write(istream.read(tr, ''))
          toread -= tr
        end
      end
    end

    # Implements kind_of? in order to pretend to be an IO object
    module FakeIO
      def kind_of?(object)
        object == IO || super
      end
    end

  end # IOExtras namespace module
end

require 'zip/ioextras/abstract_input_stream'
require 'zip/ioextras/abstract_output_stream'

# Copyright (C) 2002-2004 Thomas Sondergaard
# rubyzip is free software; you can redistribute it and/or
# modify it under the terms of the ruby license.

Version data entries

80 entries across 77 versions & 20 rubygems

Version Path
logstash-output-scalyr-0.1.9 vendor/bundle/jruby/2.5.0/gems/rubyzip-1.1.7/lib/zip/ioextras.rb
logstash-output-scalyr-0.1.8 vendor/bundle/jruby/2.5.0/gems/rubyzip-1.1.7/lib/zip/ioextras.rb
logstash-output-scalyr-0.1.7 vendor/bundle/jruby/2.5.0/gems/rubyzip-1.1.7/lib/zip/ioextras.rb
logstash-output-scalyr-0.1.6 vendor/bundle/jruby/2.5.0/gems/rubyzip-1.1.7/lib/zip/ioextras.rb
logstash-output-newrelic-1.2.0 vendor/bundle/jruby/2.5.0/gems/rubyzip-1.1.7/lib/zip/ioextras.rb
logstash-filter-csharp-0.2.1 vendor/bundle/jruby/2.5.0/gems/rubyzip-1.1.7/lib/zip/ioextras.rb
logstash-filter-csharp-0.2.1 vendor/bundle/jruby/2.3.0/gems/rubyzip-1.1.7/lib/zip/ioextras.rb
logstash-filter-csharp-0.2.0 vendor/bundle/jruby/2.3.0/gems/rubyzip-1.1.7/lib/zip/ioextras.rb
logstash-filter-csharp-0.2.0 vendor/bundle/jruby/2.5.0/gems/rubyzip-1.1.7/lib/zip/ioextras.rb
logstash-output-scalyr-0.1.5 vendor/bundle/jruby/2.5.0/gems/rubyzip-1.1.7/lib/zip/ioextras.rb
logstash-output-scalyr-0.1.4 vendor/bundle/jruby/2.5.0/gems/rubyzip-1.1.7/lib/zip/ioextras.rb
logstash-output-scalyr-0.1.3 vendor/bundle/jruby/2.5.0/gems/rubyzip-1.1.7/lib/zip/ioextras.rb
logstash-output-scalyr-0.1.2 vendor/bundle/jruby/2.5.0/gems/rubyzip-1.1.7/lib/zip/ioextras.rb
logstash-filter-device_detection-1.0.7-java vendor/bundle/jruby/1.9/gems/rubyzip-1.1.7/lib/zip/ioextras.rb
mrcooper-logstash-output-azuresearch-0.2.2 vendor/jruby/2.5.0/gems/rubyzip-1.1.7/lib/zip/ioextras.rb
logstash-output-icinga-1.1.0 vendor/jruby/2.3.0/gems/rubyzip-1.1.7/lib/zip/ioextras.rb
logstash-output-icinga-1.1.0 vendor/jruby/1.9/gems/rubyzip-1.1.7/lib/zip/ioextras.rb
logstash-filter-cache-redis-0.3.1 vendor/bundle/jruby/1.9/gems/rubyzip-1.1.7/lib/zip/ioextras.rb
logstash-filter-cache-redis-0.3.0 vendor/bundle/jruby/1.9/gems/rubyzip-1.1.7/lib/zip/ioextras.rb
logstash-filter-cache-redis-0.2.0 vendor/bundle/jruby/1.9/gems/rubyzip-1.1.7/lib/zip/ioextras.rb