When I run the rails app on the production server, it gives me the following error:
NameError in LigesController#export_all
uninitialized constant LigesController::FasterCSV
However, in the development environment its working fine. This gem is already installed on the server. I can see it by "gem list" Any ideas???
I had this export all action in my controller. earlier instead of file I was using CSV, that gave me NameError. So i changed it to file and it worked. I dont know why we cant name it to csv..might be because of old csv gem…