class File

Public Class Methods

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