From 617aaf6810ce372ebe970d0c2cf2a3fd017b8ca8 Mon Sep 17 00:00:00 2001 From: Alex Kotov Date: Wed, 5 Dec 2018 04:20:52 +0500 Subject: [PATCH] Improve Rakefile --- Rakefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Rakefile b/Rakefile index 5470e81..e494e7d 100644 --- a/Rakefile +++ b/Rakefile @@ -5,10 +5,10 @@ require_relative 'config/application' Rails.application.load_tasks desc 'Run all checks (test, lint...)' -task default: %i[lint bundler:audit] +task default: :lint desc 'Run all code analysis tools (RuboCop...)' -task lint: :rubocop +task lint: %i[rubocop bundler:audit] desc 'Fix code style (rubocop --auto-correct)' task fix: 'rubocop:auto_correct'