Sha256: 0fbd0979ebd1b5f8364fac454eda4c806fcb3ec47068a94219b1e0ebc0a82844

Contents?: true

Size: 1.59 KB

Versions: 1

Compression:

Stored size: 1.59 KB

Contents

require 'io_streams/version'
#@formatter:off
module IOStreams
  autoload :Errors,  'io_streams/errors'

  module Bzip2
    autoload :Reader, 'io_streams/bzip2/reader'
    autoload :Writer, 'io_streams/bzip2/writer'
  end
  module File
    autoload :Reader, 'io_streams/file/reader'
    autoload :Writer, 'io_streams/file/writer'
  end
  module Gzip
    autoload :Reader, 'io_streams/gzip/reader'
    autoload :Writer, 'io_streams/gzip/writer'
  end
  module HTTP
    autoload :Reader, 'io_streams/http/reader'
  end
  autoload :Path,     'io_streams/path'
  autoload :Pgp,      'io_streams/pgp'
  autoload :S3,       'io_streams/s3'
  module SFTP
    autoload :Reader, 'io_streams/sftp/reader'
    autoload :Writer, 'io_streams/sftp/writer'
  end
  module Zip
    autoload :Reader, 'io_streams/zip/reader'
    autoload :Writer, 'io_streams/zip/writer'
  end

  module Encode
    autoload :Reader, 'io_streams/encode/reader'
    autoload :Writer, 'io_streams/encode/writer'
  end
  module Line
    autoload :Reader, 'io_streams/line/reader'
    autoload :Writer, 'io_streams/line/writer'
  end
  module Record
    autoload :Reader, 'io_streams/record/reader'
    autoload :Writer, 'io_streams/record/writer'
  end
  module Row
    autoload :Reader, 'io_streams/row/reader'
    autoload :Writer, 'io_streams/row/writer'
  end
  module SymmetricEncryption
    autoload :Reader, 'io_streams/symmetric_encryption/reader'
    autoload :Writer, 'io_streams/symmetric_encryption/writer'
  end
  module Xlsx
    autoload :Reader, 'io_streams/xlsx/reader'
  end

  autoload :Tabular, 'io_streams/tabular'
end
require 'io_streams/io_streams'

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
iostreams-0.19.0 lib/iostreams.rb