Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 9f08e78

Browse files
committedFeb 18, 2022
Make default rake task rebuild
1 parent 2169e56 commit 9f08e78

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed
 

‎Rakefile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,10 @@ task :build => :clean do
3030
sh %{#{FileUtils::RUBY} extconf.rb && make}
3131
end
3232

33-
desc "Run tests"
34-
task :default do
33+
desc "Run tests without building"
34+
task :test do
3535
sh %{#{FileUtils::RUBY} #{"-w" if RUBY_VERSION >= '3'} -I. test/test_vorbis_comment.rb}
3636
end
37+
38+
desc "Run tests"
39+
task :default => [:build, :test]

0 commit comments

Comments
 (0)
Failed to load comments.