initial commit

This commit is contained in:
onyx-and-iris
2022-10-22 22:30:40 +01:00
parent f85489e358
commit ae4956f625
20 changed files with 1581 additions and 0 deletions

9
Rakefile Normal file
View File

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