class File

Public Class Methods

write(path, str) click to toggle source
# File ../../../../../bin/review-preproc, line 134
def File.write(path, str)
  File.open(path, 'w') {|f|
    f.write str
  }
end