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 0c12b2b commit 0e901b5Copy full SHA for 0e901b5
CHANGELOG.md
@@ -6,6 +6,7 @@
6
snippet of code inserted into generated binstubs just after Spring is
7
set up. #329 - @merhard
8
* Change monkey-patched `Kernel.raise` from public to private (to match default Ruby behavior) #351 - @mattbrictson
9
+* Let application_id also respect RUBY_VERSION for the use case of switching between Ruby versions for a given Rails app - @methodmissing
10
11
## 1.1.3
12
lib/spring/env.rb
@@ -38,7 +38,7 @@ def tmp_path
38
end
39
40
def application_id
41
- Digest::MD5.hexdigest(project_root.to_s)
+ Digest::MD5.hexdigest(RUBY_VERSION + project_root.to_s)
42
43
44
def socket_path
0 commit comments