Initial commit

This commit is contained in:
2023-11-12 11:51:39 +01:00
parent dfeb535db1
commit 5445a8a8f7
14 changed files with 629 additions and 7 deletions

15
Rakefile Normal file
View File

@ -0,0 +1,15 @@
# 2023-11-11
require 'rake'
require 'rake/testtask'
Rake::TestTask.new do |t|
t.libs.push 'lib'
t.libs.push 'specs'
t.verbose = true
t.pattern = "spec/*_spec.rb"
t.test_files = FileList['spec/*_spec.rb']
end
desc "Run tests"
task :default => [:test]