Initial Commit

Base Script with a Rake Verification
This commit is contained in:
Hannah-Dagemark 2023-11-20 10:16:45 +01:00
commit 41e6fd2cdc
11 changed files with 171 additions and 0 deletions

10
rakefile Normal file
View file

@ -0,0 +1,10 @@
require "minitest/test_task"
Minitest::TestTask.create(:test) do |t|
t.libs << "spec"
t.libs << "lib"
t.warning = false
t.test_globs = ["spec/**/*_spec.rb"]
end
task :default => :test