Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When I try the FasterCSV gem on my application I have this error:

Please switch to Ruby 1.9's standard CSV library. It's FasterCSV plus support for Ruby 1.9's m17n encoding engine.

By The Way, I'm using rails 3, ruby 1.9.2, rubygems 1.4.

Can someone explain to me please how to use the standard csv library of ruby 1.9. I don't have any idea at all because I'm very new to rails...

share|improve this question

1 Answer

up vote 104 down vote accepted

Ruby 1.9 has adopted FasterCSV as its built-in CSV library. However, it's in the standard library rather than Ruby 1.9's core, so you need to manually require it in your application.

After adding a require 'csv' to your code, you can then do things such as CSV.parse("this,is,my,data")

See Ruby 1.9's standard library documentation for information on using the library.

share|improve this answer
Thank You so much. How I wish I can vote for your answer but the system is telling me to have at least 15 reputation. What do the parameters in CSV.parse("this,is,my,data") mean? I know thiss is too much too ask but I'm really new to ruby on rails. – johan Feb 16 '11 at 6:37
2  
those are not parameters... that's just an example he's giving of a string "this,is,my,data" that is being parsed – jpwynn Feb 19 '11 at 19:45
Thank you so much. All I thought those are parameters. I already solved the problem. I already know how to import CSV data in Ruby 1.9.2. – johan Feb 21 '11 at 6:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.