# File lib/core/facets/file/writelines.rb, line 19 def self.writelines(path, data) File.open(path, "wb") do |file| file.puts(data) end data.size end