I have an application in Ruby on Rails and need to read a particular txt file that will be sent by the user. After sending the file, the data of the file will be displayed to the user so that it confirms if the file is correct, and if yes, then save it, the file contains letters that are the answers of a proof and each letter represents an issue, for example:
"EEDEBACABDBBADAADEADEAB"
that is:
"1 => E, 2 => E, 3 => D, 4 => E"
This file will be sent in .txt format via a form, I hope you understand!