Importing CSV data into your Rails app
Sometimes I need a quick way to import data into my databases. For this, I usually use two formats: XML or CSV. In Ruby, you can easily manipulate the two formats using existing libraries. In the case of XML, you can use the concept of builders. As for CSV you have the built-in CSV library continue…
