Skip to content

Commit

Permalink
Simplify Rakefile
Browse files Browse the repository at this point in the history
  • Loading branch information
y-yagi committed Aug 14, 2024
1 parent c1525ed commit 5e45982
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
# frozen_string_literal: true

require "bundler/gem_tasks"
require "rake/testtask"
require "minitest/test_task"

Rake::TestTask.new(:test) do |t|
t.libs << "test"
t.libs << "lib"
t.test_files = FileList['test/**/*_test.rb']
Minitest::TestTask.create do |t|
t.verbose = true
t.warning = true
end

task :default => :test
task default: :test

0 comments on commit 5e45982

Please sign in to comment.