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
This worked for me with ruby 2.6.5 and Rails 5.2.4.1.:
Add the following line in config/environments/development.rb:
config.file_watcher = ActiveSupport::EventedFileUpdateChecker
along with
config.cache_classes = false
in the same file, and
gem 'listen'
in the :development group in Gemfile.