We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7310755 commit 9b43393Copy full SHA for 9b43393
CHANGELOG.md
@@ -3,6 +3,9 @@
3
* Detect old binstubs generated with Spring 1.0 and exit with an error.
4
This prevents a situation where you can get stuck in an infinite loop
5
of spring invocations.
6
+* Avoid `warning: already initialized constant APP_PATH` when running
7
+ rails commands that do not use spring (e.g. `bin/rails server` would
8
+ emit this when you ^C to exit)
9
10
## 1.1.1
11
lib/spring/client/rails.rb
@@ -25,6 +25,7 @@ def call
25
require "spring/configuration"
26
ARGV.shift
27
load Dir.glob(Spring.application_root_path.join("{bin,script}/rails")).first
28
+ exit
29
end
30
31
0 commit comments