From af0fc567a9d67897ace55bc675f4780dfd8adb2e Mon Sep 17 00:00:00 2001 From: Brooke Kuhlmann Date: Mon, 22 Jun 2026 14:57:51 -0600 Subject: [PATCH] Fixed Reek Rake task to include Hanami source files By default, Reek only looks at the `lib` folder so this ensures all Hanami source files are inspected. Milestone: patch --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index f7bc1ec3..25aea7fd 100644 --- a/Rakefile +++ b/Rakefile @@ -9,7 +9,7 @@ require "rspec/core/rake_task" require "rubocop/rake_task" Git::Lint::Rake::Register.call -Reek::Rake::Task.new +Reek::Rake::Task.new { |task| task.source_files = "{app,config,lib,slices}/**/*.rb" } RSpec::Core::RakeTask.new { |task| task.verbose = false } RuboCop::RakeTask.new