I started building a rails project that uses jquery-datatables-rails. When I put that into my Gemfile I did NOT put it into the assets group. Everything worked fine in development. When I went to put it into production I re-read the documentation and saw that it should be in the assets group so I moved that line in my Gemfile. Then I performed a rake assets:precompile and then ran rails server -e production.
The datatable doesn't work. In fact, the only way I can make it work is to take that line out of the assets group in my Gemfile and run in development mode. I've read a lot of conflicting information on the Internet about this.
Did I screw anything up by moving the line from outside the assets group into the assets group? I would like to be able to run this in production and I want to have a Gemfile that is consistent with the jquery-datatables-rails documentation.
config.serve_static_assets = truein production.rb. Are you seeing routing errors in the console? Does it work fine in production when the gem is outside the assets group? – jordanpg Jul 31 '12 at 22:54rake assets:precompile, then how do you recover from that? Delete everything inpublic/assets? Running that rake task should not affect anything in development. If it is, it suggests that something is amiss with the setup of your assets pipeline. Have you made any other changes to the environment files? Have you tried making a trivial Rails test app to see if you have the same problem there? – jordanpg Aug 1 '12 at 16:56