Initial Commit
Base Script with a Rake Verification
This commit is contained in:
commit
41e6fd2cdc
11 changed files with 171 additions and 0 deletions
10
rakefile
Normal file
10
rakefile
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
require "minitest/test_task"
|
||||
|
||||
Minitest::TestTask.create(:test) do |t|
|
||||
t.libs << "spec"
|
||||
t.libs << "lib"
|
||||
t.warning = false
|
||||
t.test_globs = ["spec/**/*_spec.rb"]
|
||||
end
|
||||
|
||||
task :default => :test
|
||||
Loading…
Add table
Add a link
Reference in a new issue