Sha256: fe6f66df9c009003a8317abe3898e051005c84f80973fdff0609d997324d1559
Contents?: true
Size: 512 Bytes
Versions: 1
Compression:
Stored size: 512 Bytes
Contents
<h1 class='wi'>Job history</h1> <p class='intro'>Below is a list of recently executed jobs</p> <table class='queues1'> <tr> <th>Job</th> <th>Arguments</th> <th>Time</th> </tr> <% Resque.redis.lrange(Resque::Plugins::History::HISTORY_SET_NAME, 0, -1).each do |history| %> <% j = JSON.parse(history) %> <tr> <td class='queue'><%= j["class"] %></td> <td class='args'><%= j["args"] %></td> <td class='args'><%= j["time"] %></td> </tr> <% end %> </table>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
resque-history-1.5.0 | lib/resque-history/server/views/history.erb |