From e22d8af26e3e9d1d6a9ce78e39072c5032f1fbe7 Mon Sep 17 00:00:00 2001 From: Tim Diggins Date: Thu, 15 Sep 2022 12:24:05 +0100 Subject: [PATCH] add requirement for Bundler 2.1+ Spring 4.0.0 uses with_unbundled_env which is only available with Bundler 2.1 (see https://bundler.io/v2.1/whats_new.html#helper-deprecations) This has caused issues with some people using e.g Bundler v1 https://github.com/rails/spring/issues/663 --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 5266cafd..38817b98 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,7 @@ boot it every time you run a test, rake task or migration. * Ruby versions: MRI 2.7, MRI 3.0, MRI 3.1 * Rails versions: 6.0, 6.1, 7.0 +* Bundler v2.1+ Spring makes extensive use of `Process.fork`, so won't be able to provide a speed up on platforms which don't support forking (Windows, JRuby).