I\'ve just moved my rails app from the development to deployment server. I\'ve installed passenger, but I wanted to try with rails s to make sure all was running fi
rails s
I ran into the same issue when I removed a bunch of unused .coffee files from my assets.
I resolved the issue by running:
bundle exec rake assets:precompile RAILS_ENV=
And then restarting the server.