class Schked::Railtie::PathsConfig
def self.call(app)
def self.call(app) return if Schked.config.do_not_load_root_schedule? root_schedule = app.root.join("config", "schedule.rb") if root_schedule.exist? path = root_schedule.to_s Schked.config.paths << path unless Schked.config.paths.include?(path) end end