Hi Sean, I’m also coming back to RoR after being away for some time and I found a previous thread with a recommendation for live reload.
I tested in my local environment and seems to be working fine:
- Add rails_live_reload gem to the Gemfile (in development environment)
group :development do
gem "rails_live_reload"
end
- Install dependencies:
bundle install
- Start the application
rails s
.
The gem also provides some options to customize the behaviour but it’s optional.