spring
spring copied to clipboard
Rails application preloader
### Problem: When we tried to start spring as background process on CircleCI we got this error: ``` bash /home/ubuntu/fundbase/vendor/bundle/ruby/1.9.1/bundler/gems/spring-5b27cda52354/lib/spring/sid.rb:41:in `getpgid': No such process (Errno::ESRCH) from /home/ubuntu/fundbase/vendor/bundle/ruby/1.9.1/bundler/gems/spring-5b27cda52354/lib/spring/sid.rb:41:in `pgid' from /home/ubuntu/fundbase/vendor/bundle/ruby/1.9.1/bundler/gems/spring-5b27cda52354/lib/spring/server.rb:78:in...
Spring version 3.1.1 can start and stop on FreeBSD as expected only once at same terminal. The next starts it does not detach terminal. It may be stopped from another...
Hi folks, Just got the new Macbook Pro with the Apple M1 Chip. Reinstalled everything as usual through the terminal on Rosetta to avoid issues ! Everything works perfectly except...
Spring.env_override can be set to - false (default) for current behaviour - true to always override client provided environment variables in the application - an array listing the environment variables...
It's expected that `pgid` to be setup for "foreground" running server rather than for "background". So it should be changed to `set_pgid if foreground?` See discussion https://github.com/rails/spring/commit/e16e085e4e6aada8b32198e98e0c8ae1ab7b9963#r18804964
Fix for issue detailed in https://github.com/rails/spring/issues/396#issuecomment-345387012 If we have started a spring server, but the project root is deleted, the server can't successfully boot a child process. This is not...
When there is for example a `~./railsrc` with `--database=postgresql`, the dummy app generated for acceptance tests will be misconfigured and the acceptance tests will error or fail. Add the `--no-rc`...
**Background**: When attempting to using Spring with a Rails engine, I wasn't quite sure in which file do I need to include `Spring.application_root = './test/dummy'` in order to use it....
Hi guys. I don't really expect this to be fully merged, although it might be feasible in some capacity. I am looking for some help, based on this PR, on...
Currently ENV's of the client are not up to date during initialization of the app. When having the following in `config/application.rb` ``` ruby ... config.force_ssl = !!ENV['FORCE_SSL'] ... ``` The...