0
0
Fork 0

added rspec for testing and a thor task

This commit is contained in:
Gibheer 2012-10-11 06:36:36 +02:00
parent 92e199d5db
commit 1de40f7877
2 changed files with 9 additions and 0 deletions

3
.rspec Normal file
View File

@ -0,0 +1,3 @@
--color
--format documentation
--order random

6
Thorfile Normal file
View File

@ -0,0 +1,6 @@
class Default < Thor
desc 'spec', 'run all specs'
def spec
exec 'rspec'
end
end