I noticed that my rails server doesn\'t reload controllers, models and probably any other files after I change them. I use Vagrant and Rails API, and I found that some peopl
I was having the same issue so what I did was make a quick script bump like this. Make sure you are in your app folder first.
!#/bin/bash
rake db:migrate
echo "MIGRATED"
rake routes
echo "routed"
sudo service apache2 restart
echo "web server reloaded"
Now you can just type ./bump and it will run all three commands then you know everything is loaded. I also use this method to repeat this like the command line installs for gems such as devise.