# File lib/core/facets/file/write.rb, line 15 def self.write(path, data) File.open(path, "wb") do |file| return file.write(data) end end