mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
10 lines
292 B
Ruby
10 lines
292 B
Ruby
|
# 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
|