From 5e9083c858ea1e5e418e8336eff792432ea32934 Mon Sep 17 00:00:00 2001 From: masayuki oguni Date: Sat, 20 Jan 2024 16:55:46 +0900 Subject: [PATCH] Add 'bundle exec --- Rakefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Rakefile b/Rakefile index 839172e..c08f73b 100644 --- a/Rakefile +++ b/Rakefile @@ -22,12 +22,12 @@ Bundler::GemHelper.install_tasks namespace :test do desc 'Install dependencies for all tests with appraisal' task :setup do - sh 'appraisal install' + sh 'bundle exec appraisal install' end desc 'Run all tests with appraisal' task :all do - sh 'appraisal rake test' + sh 'bundle exec appraisal rake test' end end