# File lib/sugar-high/file.rb, line 33 def self.append path, content=nil, &block File.open(path, 'w+') do |f| f.puts content ||= yield end end