rails_live_reload
rails_live_reload copied to clipboard
Live Reload for your Rails app. The easiest way to increase your productivity.
Hi, after bundling I get the following error in my terminal: ```bash 2022-10-20 11:01:53 +0300 Rack app ("GET /uk/schools/1-clearcourt-secondary-college/edit_sectionsection_name=videos" - (127.0.0.1)): # ``` And this in the Web Browser console:...
I was playing with [phlex-rails](https://github.com/phlex-ruby/phlex-rails) today and wanted to see if I could get it working with a live reload plugin and landed on this one. I edited `rails_live_reload`'s [default...
Using Rails 7, jsbundling-rails and webpack we're having some issues with rails_live_reload triggering the reload before asset compilation finishes. This is covered in the readme > ...but in case your...
I'm running rails 7.1 and Ruby 3.3.0 and found that having`config.middleware.use Rack::Deflater` in my `config/application.rb` stopped the rails_live_reload from working but there were no error messages. I fixed the problem...
I am using multiple development environments, but I found that rails_live_reload doesn't work in environments named other than "development". I have set the config in initializer: `config.enabled = Rails.env.development? ||...
Thanks for this gem. It worked great right out of the box on the dockerized Rails app that was booted up with `rails s`. However, I have many local Rails...
I am running [guard](https://github.com/guard/guard) on my laptop. It is monitoring changes to the files underneath `config/` & `lib/`, and causes the whole server to restart. I'd like to have the...
Hi, Love this gem and decided to use it after going through a minefield of various configurations and options. It's much simpler than hotwire-livereload because I can use slim and...
This is a proposed fix for #26. The `RailsLiveReload.enabled?` check is currently performed immediately when the Railtie class is interpreted, returning `true` since it's the default value. However, due to...