27 lines
851 B
Diff
27 lines
851 B
Diff
From 532bdf51581c75060f45e0d7ab52423c09b4eea1 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?V=C3=ADt=20Ondruch?= <vondruch@redhat.com>
|
|
Date: Mon, 8 Feb 2021 15:36:20 +0100
|
|
Subject: [PATCH] Accept (double)quotes when removing bootsnap.
|
|
|
|
https://github.com/rails/rails/commit/3e0cdbeaf4e769ebd356a2c06dfae13d22283b7c
|
|
---
|
|
spec/support/unit/rails_application.rb | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/spec/support/unit/rails_application.rb b/spec/support/unit/rails_application.rb
|
|
index 2f5d5dc7..3b4b02b0 100644
|
|
--- a/spec/support/unit/rails_application.rb
|
|
+++ b/spec/support/unit/rails_application.rb
|
|
@@ -130,7 +130,7 @@ end
|
|
# Zeus anyhow)
|
|
fs.comment_lines_matching(
|
|
'config/boot.rb',
|
|
- %r{\Arequire 'bootsnap/setup'},
|
|
+ %r{\Arequire ['"]bootsnap/setup['"]},
|
|
)
|
|
end
|
|
|
|
--
|
|
2.30.0
|
|
|