class Pathname

Public Instance Methods

write(*args) click to toggle source
# File lib/git/dust.rb, line 9
def write(*args)
  open("w") do |f|
    f.write(*args)
  end
end