discourse/lib/tasks/autospec.rake

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
900 B
Ruby
Raw Normal View History

# frozen_string_literal: true
# I like guard, don't get me wrong, but it is just not working right
# architecturally 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
2013-11-01 18:57:50 -04:00
require 'autospec/manager'
debug = ARGV.any? { |a| a == "d" || a == "debug" } || ENV["DEBUG"]
2013-11-05 05:01:17 -05:00
force_polling = ARGV.any? { |a| a == "p" || a == "polling" }
latency = ((ARGV.find { |a| a =~ /l=|latency=/ } || "").split("=")[1] || 3).to_i
if force_polling
2013-11-01 18:57:50 -04:00
puts "Polling has been forced (slower) - checking every #{latency} #{"second".pluralize(latency)}"
else
puts "If file watching is not working, you can force polling with: bundle exec rake autospec p l=3"
end
2013-11-05 05:01:17 -05:00
puts "@@@@@@@@@@@@ Running in debug mode" if debug
2013-11-01 18:57:50 -04:00
2013-11-05 05:01:17 -05:00
Autospec::Manager.run(force_polling: force_polling, latency: latency, debug: debug)
end