blazer.rake 262 B

12345678910
  1. namespace :blazer do
  2. desc "run checks"
  3. task :run_checks, [:schedule] => :environment do |t, args|
  4. Blazer.run_checks(schedule: args[:schedule] || ENV["SCHEDULE"])
  5. end
  6. task send_failing_checks: :environment do
  7. Blazer.send_failing_checks
  8. end
  9. end