From 0910b3ac8f21b59897cc29692853dbff1c63df40 Mon Sep 17 00:00:00 2001 From: Tony Hsu Date: Tue, 22 Aug 2023 21:44:46 +0200 Subject: [PATCH] Remove rspec and cucumber depenedencies from task :main --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index ebd6bc0f..3c0ab4ac 100644 --- a/Rakefile +++ b/Rakefile @@ -23,7 +23,7 @@ end desc "Run RSpec" # rubocop:disable Metrics/BlockLength namespace :spec do - task all: [:main, :cucumber, :rspec] + task all: [:main] RSpec::Core::RakeTask.new(:main) do |t, args| t.pattern = "spec/**/*_spec.rb"