From: sto.mar@... Date: 2013-01-12T01:50:59+09:00 Subject: Re: how to open pop up window table? Am 11.01.2013 13:09, schrieb Joel Pearson: > I've never worked with CSVs, but I think there's a good CSV gem > available or you could use "File" and handle the parsing yourself. This > link looks fairly useful: > http://snippets.aktagon.com/snippets/246-How-to-parse-CSV-data-with-Ruby Use the built-in CSV class. The link is out-dated. In Ruby 1.9 the CSV implementation has been replaced by FasterCSV, so there is no need to require the gem. --