Johan Sørensen's code to do buffered file uploads in rails
Ruby code to do a buffered file write. Writes chunks of a file to disk from a form post. Ala Johan Sørensen.
File.open("", "wb") do |f| while buff = file_field.read(4096) f.write(buff) end end