I did not see this kind of task done anywhere and was wondering how I could export data in a .prn
file format in RoR.
The idea would be to have:
and convert it to a line which would be like:
"blah foo bar " -> total 18 chars
I need this because the ERP I'm using only accept fixed width data field.
While both your answers are good, I also found the ruby function ljust():
I then have:
"blah".ljust(6)+"foo".ljust(8)+"bar".ljust(4)
Hope it helps anyone needing the same thing...
Thanks for the help guys