a spec that works like the fsm intended

This commit is contained in:
Sam
2013-04-25 17:17:43 +10:00
parent 0a13b78c05
commit ef875bba12
3 changed files with 261 additions and 0 deletions

9
lib/tasks/autospec.rake Normal file
View File

@ -0,0 +1,9 @@
# I like guard, don't get me wrong, but it is just not working right
# architectually it can not do what I want it to do, this is how I want
# it to behave
desc "Run all specs automatically as needed"
task "autospec" => :environment do
require 'autospec/runner'
Autospec::Runner.run
end