Sha256: 933e19260bba3e0b35627c663f9b39b5bb31957dfc39d34be716bb7b6002a293
Contents?: true
Size: 970 Bytes
Versions: 2
Compression:
Stored size: 970 Bytes
Contents
require 'epitools' # # A mutation of "open" that lets you read/write gzip files, as well as # regular files. # # (NOTE: gzip detection is based on the filename, not the contents.) # # It accepts a block just like open()! # # Example: # zopen("test.txt") #=> #<File:test.txt> # zopen("test.txt.gz") #=> #<Zlib::GzipReader:0xb6c79424> # zopen("otherfile.gz", "w") #=> #<Zlib::GzipWriter:0x7fe30448>> # zopen("test.txt.gz") { |f| f.read } # read the contents of the .gz file, then close the file handle automatically. # def zopen(filename, mode="r") file = open(filename, mode) if filename =~ /\.gz$/ case mode when "r", "rb" file = Zlib::GzipReader.new(file) when "w", "wb" file = Zlib::GzipWriter.new(file) else raise "Unknown mode: #{mode.inspect}. zopen only supports 'r' and 'w'." end end if block_given? result = yield(file) file.close result else file end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
epitools-0.4.37 | lib/epitools/zopen.rb |
epitools-0.4.36 | lib/epitools/zopen.rb |