2 3 4 5 6
# File 'lib/file-append.rb', line 2 def File.append(name, string, open_args = nil) File.open(name, 'a', open_args) do |f| f.write(string) end end