Rakefile w/ test+gem tasks

This commit is contained in:
Loic Nageleisen 2017-02-27 22:14:49 +01:00
parent 8ae604557b
commit 934e72b00f
5 changed files with 19 additions and 5 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