8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# File 'app/controllers/clockwork_web/home_controller.rb', line 8
def index
@events =
Clockwork.manager.instance_variable_get(:@events).sort_by do |e|
at = e.instance_variable_get(:@at)
[
e.instance_variable_get(:@period),
(at && at.instance_variable_get(:@hour)) || -1,
(at && at.instance_variable_get(:@min)) || -1,
e.job.to_s
]
end
@last_runs = ClockworkWeb.last_runs
@disabled = ClockworkWeb.disabled_jobs
@last_heartbeat = ClockworkWeb.last_heartbeat
end
|