From 38be7ccfa77135810e007857446e4355d5b7b029 Mon Sep 17 00:00:00 2001 From: ikramagix Date: Fri, 27 Sep 2024 23:34:34 +0300 Subject: [PATCH] added rubocop require in rakefile --- Rakefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Rakefile b/Rakefile index 7168491..26c03b2 100644 --- a/Rakefile +++ b/Rakefile @@ -2,6 +2,7 @@ require "bundler/gem_tasks" require "rspec/core/rake_task" +require "rubocop/rake_task" # Define the RSpec task for running tests RSpec::Core::RakeTask.new(:spec) do |t|