Initial Commit

This commit is contained in:
2018-06-07 10:03:07 -05:00
commit b4852fbbd6
22 changed files with 1255 additions and 0 deletions

10
Rakefile Normal file
View File

@@ -0,0 +1,10 @@
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