From d023bf25cea83b5ede2cdf331d2c2a342b250db5 Mon Sep 17 00:00:00 2001 From: Stan Hu Date: Sun, 16 Jul 2023 22:28:59 -0700 Subject: [PATCH] Fix native install tasks failing Previously sence `rake spec` required the `compile` step, `scripts/test-gem-install` failed because `extconf.rb` was removed. Fix this by making the default task depend on the `compile` task, but the `spec` task independent of the `compile` task. --- Rakefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Rakefile b/Rakefile index e93073f..170a067 100644 --- a/Rakefile +++ b/Rakefile @@ -142,5 +142,4 @@ task "set-version-to-timestamp" do puts "NOTE: wrote version as \"#{fake_version}\"" end -task :spec => :compile -task :default => :spec +task default: [:compile, :spec]