Hrb: not as good as I thought

This commit is contained in:
2019-06-18 20:17:37 -04:00
commit 517b911eea
26 changed files with 1152 additions and 0 deletions

12
Rakefile Normal file
View File

@@ -0,0 +1,12 @@
# frozen_string_literal: true
require "bundler/gem_tasks"
require "rake/testtask"
Rake::TestTask.new(:test) do |t|
t.libs << "test"
t.libs << "lib"
t.test_files = FileList["test/**/*_test.rb"]
end
task default: :test