class YDFileUtils
Public Class Methods
writeFile(filePath, buffer)
click to toggle source
# File lib/file_processer.rb, line 6 def self.writeFile (filePath, buffer) File.open(filePath, "w") { |source_file| source_file.write buffer } return end