From f03b8ec85ad2d88fb7389b791d84fb86b558b156 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=C3=A8r=20Kessels?= Date: Mon, 4 Nov 2019 13:51:38 +0100 Subject: [PATCH 1/3] Fixup for a5a9791: ensure cucumber uses corrected spelling. Test was failing. --- features/backwards.feature | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/features/backwards.feature b/features/backwards.feature index ef7337e..5309c3d 100644 --- a/features/backwards.feature +++ b/features/backwards.feature @@ -23,6 +23,6 @@ Feature: Backwards compatibility When I run `todotxt --file=done` Then it should pass with exactly: """ - ERROR: You are using an old config, which has no support for mulitple files. Please update your configuration. + ERROR: You are using an old config, which has no support for multiple files. Please update your configuration. """ From b53430f55f361d470dd7ea523685e92e8aeafa3f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=C3=A8r=20Kessels?= Date: Mon, 4 Nov 2019 13:52:15 +0100 Subject: [PATCH 2/3] Fixup d002ee0e attr_reader must be attr_accessor for --all feature Using the --all feature broke in this change. Reverting this also fixes a test that was -rightfully- breaking after this change. --- lib/todotxt/todolist.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/todotxt/todolist.rb b/lib/todotxt/todolist.rb index 57615bb..6fc3ec0 100644 --- a/lib/todotxt/todolist.rb +++ b/lib/todotxt/todolist.rb @@ -6,7 +6,7 @@ module Todotxt class TodoList include Enumerable - attr_reader :todos + attr_accessor :todos # @INK: refactor TodoList and TodoFile # So that TodoFile contains all IO ad List is no longer dependent on file. From 29a5bed1093b9338ab054caac4d28ee6d66eb0a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=C3=A8r=20Kessels?= Date: Mon, 4 Nov 2019 13:54:00 +0100 Subject: [PATCH 3/3] Fixup 1f57521: debugger was removed, so require failed. Running cucumber flunked with an error, as it tried to load the debugger gem, which was removed in 1f57521. I'm removing it entirely for now. --- features/support/debugger.rb | 1 - 1 file changed, 1 deletion(-) delete mode 100644 features/support/debugger.rb diff --git a/features/support/debugger.rb b/features/support/debugger.rb deleted file mode 100644 index ae24f9a..0000000 --- a/features/support/debugger.rb +++ /dev/null @@ -1 +0,0 @@ -require "debugger"