class File

Public Instance Methods

each_part(size) { |read(size) until eof?| ... } click to toggle source
# File lib/shared/patch_file.rb, line 2
def each_part(size)
  yield read(size) until eof?
end