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.
2 parents bda1c66 + c5b5d55 commit b692823Copy full SHA for b692823
CHANGELOG.md
@@ -1,6 +1,8 @@
1
## 1.3.5
2
3
* Fix `rails test` command to run in test environment #403 - @eileencodes
4
+* Ensure the spawned server is loaded from the same version of the Spring gem
5
+ as the client. Issue #295.
6
7
## 1.3.4
8
lib/spring/client/run.rb
@@ -68,8 +68,7 @@ def boot_server
68
pid = Process.spawn(
69
gem_env,
70
"ruby",
71
- "-r", "spring/server",
72
- "-e", "Spring::Server.boot"
+ "-e", "gem 'spring', '#{Spring::VERSION}'; require 'spring/server'; Spring::Server.boot"
73
)
74
75
until env.socket_path.exist?
0 commit comments