Method: Path#binread

Defined in:
lib/path/io.rb,
lib/path/io.rb

#binread(*args) ⇒ Object

Returns all the bytes from the file, or the first N if specified. See IO.binread.



26
27
28
# File 'lib/path/io.rb', line 26

def binread(*args)
  IO.binread(@path, *args)
end