This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Recurring Job using Delayed::Job | |
# | |
# Setup Your job the "plain-old" DJ (perform) way, include this module | |
# and Your handler will re-schedule itself every time it succeeds. | |
# | |
# Sample : | |
# | |
# class MyJob | |
# include Delayed::ScheduledJob |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# The way the parallel_tests gem loads the test suite is incompatible with how ci_reporter loads the | |
# test suite. This module reconciles the difference by recognizing when ci_reporter is expected to | |
# be loaded and then doing it. | |
module ParallelCIReporter | |
# Sets up ci_reporter if necessary. | |
def self.setup_ci_reporter | |
install_mediator if ci_reporter? | |
end |
OlderNewer