spring icon indicating copy to clipboard operation
spring copied to clipboard

Rails application preloader

Results 118 spring issues
Sort by recently updated
recently updated
newest added
trafficstars

I noticed recently that when a Spring client times out, that it also crashes the server. This appears to be because the server tries to write to the client and...

Hello, GitHub actions is getting this error when trying to update a Rails 6.1 application to Spring 4.3. ``` /home/runner/work/ruby3-rails6-bootstrap-heroku/ruby3-rails6-bootstrap-heroku/vendor/bundle/ruby/3.1.0/gems/railties-6.1.7.10/lib/rails/railtie.rb:229:in `initialize': Rails::Application is abstract, you cannot instantiate it directly. (RuntimeError)...

## Observation: When using Spring v4.3.0 with Rails v7.1.5.1, the following error is encountered during preloading when starting the rails console: ``` $ bin/spring stop && rails c Spring is...

### What I did. Encode variables to UTF-8 when decoding JSON. Ruby's ENV variable is ASCII-8BIT, so force_encoding is required when accepting values passed via ENV. ### What I didn't...

This bug was introduced in spring 4.3.0. If the shell environment contains a non-ASCII value, e.g. ``` export HOMEBREW_INSTALL_BADGE=🍵 ``` Then running a spring-enabled binstub like `bin/rspec` crashes with an...

When you run a rake task with `bin/rails` it does not use spring (except db rake tasks). And, many rails commands that _could_ benefit from using spring do not use...

We're seemingly randomly getting process hangs when running things that boot the rails environment. It is easily resolved by just killing the process with ctrl+c and then starting it again......

Up until recently, the binstubs generated by spring were using exception handling to decide whether to load Spring or not. This worked ok, and correctly didn't load Spring on production...