Methods
W
Class Public methods
write(path, content)

Writes the given content to the given file.

# File lib/inochi/util.rb, line 96
  def File.write path, content
    open(path, 'wb') {|f| f.write content }
  end