Writes the given content to the given file.
Source: show | on GitHub
# File lib/inochi/util.rb, line 96 def File.write path, content open(path, 'wb') {|f| f.write content } end