Method: Path#binwrite

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

#binwrite(contents, *open_args) ⇒ Object

Writes contents to self. See IO.binwrite.



58
59
60
# File 'lib/path/io.rb', line 58

def binwrite(contents, *open_args)
  IO.binwrite(@path, contents, *open_args)
end