I\'ve been following along Michael Hartl\'s excellent RoR Tutorial, but I\'m using RoR 3.1. I am a newbie to RoR 3.1 and need help related to assets pipeline. Here is my pro
You may want to precompile your assets on production as described above. And if you use capistrano you may do it after code update:
require 'bundler/capistrano' after 'deploy:update_code' do run "cd #{release_path}; RAILS_ENV=#{rails_env} bundle exec rake assets:precompile" end