Initial commit

This commit is contained in:
Loic Nageleisen 2017-09-15 18:13:04 +02:00
commit e5a05299b1
8 changed files with 368 additions and 0 deletions

10
Rakefile Normal file
View file

@ -0,0 +1,10 @@
require 'rake/testtask'
require 'bundler'
Bundler::GemHelper.install_tasks
Rake::TestTask.new do |t|
t.libs << 'test'
t.test_files = FileList['test/test_*.rb']
t.verbose = true
end