class Pathname

Public Instance Methods

binwrite(*args) click to toggle source
# File lib/deep_cover/backports.rb, line 12
def binwrite(*args)
  File.binwrite(to_path, *args)
end
write(*args) click to toggle source
# File lib/deep_cover/backports.rb, line 9
def write(*args)
  File.write(to_path, *args)
end