From bf6ac12f80d45e4b2ae97dbee478e97b93969286 Mon Sep 17 00:00:00 2001 From: Tommaso Barbato Date: Sat, 28 Sep 2024 13:23:27 +0200 Subject: [PATCH] Introduce build task as combination of RSpec and RuboCop tasks --- Rakefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Rakefile b/Rakefile index 2dd0029..90a6e58 100644 --- a/Rakefile +++ b/Rakefile @@ -5,3 +5,4 @@ require 'bundler/setup' Rake.add_rakelib 'tasks/**' task default: 'server' +task build: ['spec', 'rubocop']