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

### Steps to reproduce dependencies installed via rbenv/bundler with binstubs 1. install gems. `bundle install --path .bundle/gems --binstubs .bundle/bin` 2. create a new rails application in a subdirectory of a...

When I set eager_load = true in `config/environments/test.rb` then after spring is loaded and any file is changed then running specs again will fail with a message like "uninitialized constant...

Spring is great! You are great! When spring spawns new processes, it passes in a copy of the original spring env, `SPRING_ORIGINAL_ENV` as an environmental variable. https://github.com/rails/spring/blob/a85d32ef3726931b2b81abbb10a6e1c2964e7e32/lib/spring/application_manager.rb#L102 If the environment...

Whether I run `rails c` (with spring binstubs installed) or `bundle exec rails c`, the console successfully connects to spring. However, it fails to load `~/.irbrc` (wherein I enable command...

Hi, I was deploying a Ruby On Rails application, and follow the steps mentioned in the [link](https://github.com/rails/spring#deployment) when it executed, it is showing the deprecation warning for the flag, `[DEPRECATED]...

One nice feature of rails 5 - "rails" utility can execute rake commands. So instead of "rake db:migrate" one can use "rails rb:migrate". But currently spring can't detect this case...

Spring is not working with `bin/rails db:seed`, but it is working with `bin/rake db:seed`. ```sh $ bin/rake db:seed Running via Spring preloader in process 20072 ... ``` ```sh $ bin/rails...

I started a Rails 4 app with Ruby 2.1.1 but then I upgraded to 2.1.2 (in Gemfile and .ruby-version), and started getting this error e.g. opening a console or generating...

enhancement

I've got a program I'm developing that uses background process that loads rails (delayed_job & clockwork). Having these two processes up plus a rails console causes 3 sets of fsevent_watchers...

I'm upgrading a pretty large codebase (that uses spring) from rails 4.2.7 to 5.0.1. There are a bunch of tests to fix, and in fixing them the behavior I'm seeing...