Rails 3 Server Startup problem with fastercsv
Posted
by
Anand
on Stack Overflow
See other posts from Stack Overflow
or by Anand
Published on 2010-09-14T19:06:21Z
Indexed on
2012/03/26
11:29 UTC
Read the original article
Hit count: 480
I have a rails 2.3.5 app getting upgraded to Rails 3. I did every thing I am required to do for upgrading and when I start the rails server using
rails server
it gives me this
Please switch to Ruby 1.9's standard CSV library. It's FasterCSV plus
support for Ruby 1.9's m17n encoding engine.
I am using ruby-1.9.2-p0
and have fastercsv (1.5.3) gem
installed. with the help of puts statements, i was able to track down where the error occurred. i found that the execution stops at this line
Bundler.require(:default, Rails.env) if defined?(Bundler)
in application.rb file. I tried many things but none worked .. please help..
© Stack Overflow or respective owner