From da0919d5585a9a4448f719491adee9d7945e7330 Mon Sep 17 00:00:00 2001 From: Howard Abrams Date: Tue, 21 Feb 2023 17:26:25 -0800 Subject: [PATCH] Looks like I need cucumber support At least to read feature files. --- ha-programming-ruby.org | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ha-programming-ruby.org b/ha-programming-ruby.org index 99fb32b..5dd34d9 100644 --- a/ha-programming-ruby.org +++ b/ha-programming-ruby.org @@ -196,6 +196,12 @@ And then we may or may not need to enable the =rubocop-mode=: (use-package rubocop :hook (ruby-mode . rubocop-mode)) #+END_SRC +* Auxiliary Support +** Cucumber +Seems that to understand and edit Cucumber /feature/ definitions, you need [[https://github.com/michaelklishin/cucumber.el][cucumber.el]]: +#+begin_src emacs-lisp + (use-package feature-mode) +#+end_src * LSP Need to install [[https://github.com/castwide/solargraph][Solargraph]] for the LSP server experience: #+begin_src sh