:stopdoc:
5 6 7 8 9 10 11
# File 'lib/active_support/core_ext/io.rb', line 5 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