From 937e61d4829720af8650a88b68a79eedd194414b Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Sat, 22 Feb 2020 23:52:20 +0000 Subject: [PATCH] chore(lang): Disable use of spring with rspec-mode Spring has changed and is no longer compatible with the way that rspec-mode implements spring support. Hence we need to disable rspec-mode's support and attempts at using Spring the wrong way. Once rspec-mode has been updated to support spring again, we can re-enable this. --- modules/languages/siren-ruby.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/languages/siren-ruby.el b/modules/languages/siren-ruby.el index 0182be2..e84acb7 100644 --- a/modules/languages/siren-ruby.el +++ b/modules/languages/siren-ruby.el @@ -119,7 +119,7 @@ (rspec-primary-source-dirs '("app")) (rspec-spec-command "env COVERAGE=0 rspec") (rspec-use-opts-file-when-available nil) - (rspec-use-spring-when-possible t) + (rspec-use-spring-when-possible nil) :init (defun siren-rspec-mode-setup ())