# File lib/meez/meez.rb, line 31
  def self.append_file(file, content)
    File.open(file, 'a') { |f| f.write("#{content}\n") }
  end