resque_ui 3.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (108) hide show
  1. data/Gemfile +6 -0
  2. data/Gemfile.lock +102 -0
  3. data/History.txt +5 -0
  4. data/MIT-LICENSE +21 -0
  5. data/README.markdown +279 -0
  6. data/Rakefile +49 -0
  7. data/VERSION.yml +5 -0
  8. data/app/assets/images/idle.png +0 -0
  9. data/app/assets/images/poll.png +0 -0
  10. data/app/assets/images/working.png +0 -0
  11. data/app/assets/javascripts/resque/jquery-1.3.2.min.js +19 -0
  12. data/app/assets/javascripts/resque/jquery.relatize_date.js +95 -0
  13. data/app/assets/javascripts/resque/ranger.js +24 -0
  14. data/app/assets/stylesheets/resque/resque.css +93 -0
  15. data/app/assets/stylesheets/resque/resque_reset.css +48 -0
  16. data/app/controllers/resque_controller.rb +236 -0
  17. data/app/helpers/resque_helper.rb +107 -0
  18. data/app/views/layouts/resque.html.erb +39 -0
  19. data/app/views/resque/_key.html.erb +17 -0
  20. data/app/views/resque/_next_more.html.erb +10 -0
  21. data/app/views/resque/_queues.html.erb +52 -0
  22. data/app/views/resque/_status_styles.erb +98 -0
  23. data/app/views/resque/_workers.html.erb +110 -0
  24. data/app/views/resque/_working.html.erb +69 -0
  25. data/app/views/resque/delayed.html.erb +35 -0
  26. data/app/views/resque/delayed_timestamp.html.erb +26 -0
  27. data/app/views/resque/error.erb +1 -0
  28. data/app/views/resque/failed.html.erb +54 -0
  29. data/app/views/resque/overview.html.erb +4 -0
  30. data/app/views/resque/schedule.html.erb +96 -0
  31. data/app/views/resque/stats.html.erb +62 -0
  32. data/app/views/resque/status.html.erb +57 -0
  33. data/app/views/resque/statuses.html.erb +72 -0
  34. data/app/views/resque/workers.html.erb +1 -0
  35. data/lib/resque_ui/cap.rb +6 -0
  36. data/lib/resque_ui/cap_recipes.rb +106 -0
  37. data/lib/resque_ui/overrides/resque/failure/failure.rb +22 -0
  38. data/lib/resque_ui/overrides/resque/job.rb +12 -0
  39. data/lib/resque_ui/overrides/resque/resque.rb +8 -0
  40. data/lib/resque_ui/overrides/resque/worker.rb +230 -0
  41. data/lib/resque_ui/overrides/resque_scheduler/resque_scheduler.rb +58 -0
  42. data/lib/resque_ui/overrides/resque_status/chained_job_with_status.rb +24 -0
  43. data/lib/resque_ui/overrides/resque_status/job_with_status.rb +59 -0
  44. data/lib/resque_ui/overrides/resque_status/status.rb +53 -0
  45. data/lib/resque_ui.rb +26 -0
  46. data/lib/tasks/failure.rake +8 -0
  47. data/lib/tasks/scheduler.rake +11 -0
  48. data/lib/tasks/worker.rake +80 -0
  49. data/rdoc/Resque/ChainedJobWithStatus.html +284 -0
  50. data/rdoc/Resque/Failure/Base.html +229 -0
  51. data/rdoc/Resque/Failure.html +202 -0
  52. data/rdoc/Resque/Job.html +202 -0
  53. data/rdoc/Resque/JobWithStatus.html +410 -0
  54. data/rdoc/Resque/Status.html +368 -0
  55. data/rdoc/Resque/Worker.html +1104 -0
  56. data/rdoc/Resque.html +232 -0
  57. data/rdoc/ResqueScheduler.html +434 -0
  58. data/rdoc/ResqueUi/Cap.html +150 -0
  59. data/rdoc/ResqueUi/Engine.html +150 -0
  60. data/rdoc/ResqueUi.html +157 -0
  61. data/rdoc/created.rid +13 -0
  62. data/rdoc/images/brick.png +0 -0
  63. data/rdoc/images/brick_link.png +0 -0
  64. data/rdoc/images/bug.png +0 -0
  65. data/rdoc/images/bullet_black.png +0 -0
  66. data/rdoc/images/bullet_toggle_minus.png +0 -0
  67. data/rdoc/images/bullet_toggle_plus.png +0 -0
  68. data/rdoc/images/date.png +0 -0
  69. data/rdoc/images/find.png +0 -0
  70. data/rdoc/images/loadingAnimation.gif +0 -0
  71. data/rdoc/images/macFFBgHack.png +0 -0
  72. data/rdoc/images/package.png +0 -0
  73. data/rdoc/images/page_green.png +0 -0
  74. data/rdoc/images/page_white_text.png +0 -0
  75. data/rdoc/images/page_white_width.png +0 -0
  76. data/rdoc/images/plugin.png +0 -0
  77. data/rdoc/images/ruby.png +0 -0
  78. data/rdoc/images/tag_green.png +0 -0
  79. data/rdoc/images/wrench.png +0 -0
  80. data/rdoc/images/wrench_orange.png +0 -0
  81. data/rdoc/images/zoom.png +0 -0
  82. data/rdoc/index.html +163 -0
  83. data/rdoc/js/darkfish.js +116 -0
  84. data/rdoc/js/jquery.js +32 -0
  85. data/rdoc/js/quicksearch.js +114 -0
  86. data/rdoc/js/thickbox-compressed.js +10 -0
  87. data/rdoc/lib/resque_overrides_rb.html +54 -0
  88. data/rdoc/lib/resque_scheduler_overrides_rb.html +52 -0
  89. data/rdoc/lib/resque_status_overrides_rb.html +52 -0
  90. data/rdoc/lib/resque_ui/cap_rb.html +52 -0
  91. data/rdoc/lib/resque_ui/cap_recipes_rb.html +58 -0
  92. data/rdoc/lib/resque_ui/engine_rb.html +52 -0
  93. data/rdoc/lib/resque_ui/overrides/resque/failure/failure_rb.html +54 -0
  94. data/rdoc/lib/resque_ui/overrides/resque/job_rb.html +52 -0
  95. data/rdoc/lib/resque_ui/overrides/resque/resque_rb.html +52 -0
  96. data/rdoc/lib/resque_ui/overrides/resque/worker_rb.html +54 -0
  97. data/rdoc/lib/resque_ui/overrides/resque_scheduler/resque_scheduler_rb.html +52 -0
  98. data/rdoc/lib/resque_ui/overrides/resque_status/chained_job_with_status_rb.html +52 -0
  99. data/rdoc/lib/resque_ui/overrides/resque_status/job_with_status_rb.html +52 -0
  100. data/rdoc/lib/resque_ui/overrides/resque_status/status_rb.html +52 -0
  101. data/rdoc/lib/resque_ui/resque_ui_rb.html +52 -0
  102. data/rdoc/lib/resque_ui/tasks_rb.html +64 -0
  103. data/rdoc/lib/resque_ui_rb.html +76 -0
  104. data/rdoc/rdoc.css +763 -0
  105. data/resque_ui.gemspec +153 -0
  106. data/test/resque_ui_test.rb +8 -0
  107. data/test/test_helper.rb +3 -0
  108. metadata +205 -0
@@ -0,0 +1,150 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
3
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
5
+ <head>
6
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
7
+
8
+ <title>Class: ResqueUi::Cap</title>
9
+
10
+ <link rel="stylesheet" href="../rdoc.css" type="text/css" media="screen" />
11
+
12
+ <script src="../js/jquery.js" type="text/javascript" charset="utf-8"></script>
13
+ <script src="../js/thickbox-compressed.js" type="text/javascript" charset="utf-8"></script>
14
+ <script src="../js/quicksearch.js" type="text/javascript" charset="utf-8"></script>
15
+ <script src="../js/darkfish.js" type="text/javascript" charset="utf-8"></script>
16
+
17
+ </head>
18
+ <body id="top" class="class">
19
+
20
+ <div id="metadata">
21
+ <div id="home-metadata">
22
+ <div id="home-section" class="section">
23
+ <h3 class="section-header">
24
+ <a href="../index.html">Home</a>
25
+ <a href="../index.html#classes">Classes</a>
26
+ <a href="../index.html#methods">Methods</a>
27
+ </h3>
28
+ </div>
29
+ </div>
30
+
31
+ <div id="file-metadata">
32
+ <div id="file-list-section" class="section">
33
+ <h3 class="section-header">In Files</h3>
34
+ <div class="section-body">
35
+ <ul>
36
+
37
+ <li><a href="../lib/resque_ui/cap_rb.html?TB_iframe=true&amp;height=550&amp;width=785"
38
+ class="thickbox" title="lib/resque_ui/cap.rb">lib/resque_ui/cap.rb</a></li>
39
+
40
+ </ul>
41
+ </div>
42
+ </div>
43
+
44
+
45
+ </div>
46
+
47
+ <div id="class-metadata">
48
+
49
+ <!-- Parent Class -->
50
+ <div id="parent-class-section" class="section">
51
+ <h3 class="section-header">Parent</h3>
52
+
53
+ <p class="link">Object</p>
54
+
55
+ </div>
56
+
57
+
58
+
59
+
60
+
61
+
62
+
63
+
64
+
65
+ </div>
66
+
67
+ <div id="project-metadata">
68
+
69
+
70
+
71
+ <div id="classindex-section" class="section project-section">
72
+ <h3 class="section-header">Class/Module Index
73
+ <span class="search-toggle"><img src="../images/find.png"
74
+ height="16" width="16" alt="[+]"
75
+ title="show/hide quicksearch" /></span></h3>
76
+ <form action="#" method="get" accept-charset="utf-8" class="initially-hidden">
77
+ <fieldset>
78
+ <legend>Quicksearch</legend>
79
+ <input type="text" name="quicksearch" value=""
80
+ class="quicksearch-field" />
81
+ </fieldset>
82
+ </form>
83
+
84
+ <ul class="link-list">
85
+
86
+ <li><a href="../Resque.html">Resque</a></li>
87
+
88
+ <li><a href="../Resque/ChainedJobWithStatus.html">Resque::ChainedJobWithStatus</a></li>
89
+
90
+ <li><a href="../Resque/Failure.html">Resque::Failure</a></li>
91
+
92
+ <li><a href="../Resque/Job.html">Resque::Job</a></li>
93
+
94
+ <li><a href="../Resque/JobWithStatus.html">Resque::JobWithStatus</a></li>
95
+
96
+ <li><a href="../Resque/Status.html">Resque::Status</a></li>
97
+
98
+ <li><a href="../Resque/Worker.html">Resque::Worker</a></li>
99
+
100
+ <li><a href="../ResqueUi.html">ResqueUi</a></li>
101
+
102
+ <li><a href="../ResqueUi/Cap.html">ResqueUi::Cap</a></li>
103
+
104
+ <li><a href="../ResqueUi/Engine.html">ResqueUi::Engine</a></li>
105
+
106
+ <li><a href="../ResqueScheduler.html">ResqueScheduler</a></li>
107
+
108
+ </ul>
109
+ <div id="no-class-search-results" style="display: none;">No matching classes.</div>
110
+ </div>
111
+
112
+
113
+ </div>
114
+ </div>
115
+
116
+ <div id="documentation">
117
+ <h1 class="class">ResqueUi::Cap</h1>
118
+
119
+ <div id="description" class="description">
120
+
121
+ </div><!-- description -->
122
+
123
+
124
+
125
+
126
+ <div id="5Buntitled-5D" class="documentation-section">
127
+
128
+
129
+
130
+
131
+
132
+
133
+
134
+
135
+ <!-- Methods -->
136
+
137
+ </div><!-- 5Buntitled-5D -->
138
+
139
+
140
+ </div><!-- documentation -->
141
+
142
+ <div id="validator-badges">
143
+ <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
144
+ <p><small>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish
145
+ Rdoc Generator</a> 2</small>.</p>
146
+ </div>
147
+
148
+ </body>
149
+ </html>
150
+
@@ -0,0 +1,150 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
3
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
5
+ <head>
6
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
7
+
8
+ <title>Class: ResqueUi::Engine</title>
9
+
10
+ <link rel="stylesheet" href="../rdoc.css" type="text/css" media="screen" />
11
+
12
+ <script src="../js/jquery.js" type="text/javascript" charset="utf-8"></script>
13
+ <script src="../js/thickbox-compressed.js" type="text/javascript" charset="utf-8"></script>
14
+ <script src="../js/quicksearch.js" type="text/javascript" charset="utf-8"></script>
15
+ <script src="../js/darkfish.js" type="text/javascript" charset="utf-8"></script>
16
+
17
+ </head>
18
+ <body id="top" class="class">
19
+
20
+ <div id="metadata">
21
+ <div id="home-metadata">
22
+ <div id="home-section" class="section">
23
+ <h3 class="section-header">
24
+ <a href="../index.html">Home</a>
25
+ <a href="../index.html#classes">Classes</a>
26
+ <a href="../index.html#methods">Methods</a>
27
+ </h3>
28
+ </div>
29
+ </div>
30
+
31
+ <div id="file-metadata">
32
+ <div id="file-list-section" class="section">
33
+ <h3 class="section-header">In Files</h3>
34
+ <div class="section-body">
35
+ <ul>
36
+
37
+ <li><a href="../lib/resque_ui_rb.html?TB_iframe=true&amp;height=550&amp;width=785"
38
+ class="thickbox" title="lib/resque_ui.rb">lib/resque_ui.rb</a></li>
39
+
40
+ </ul>
41
+ </div>
42
+ </div>
43
+
44
+
45
+ </div>
46
+
47
+ <div id="class-metadata">
48
+
49
+ <!-- Parent Class -->
50
+ <div id="parent-class-section" class="section">
51
+ <h3 class="section-header">Parent</h3>
52
+
53
+ <p class="link">Rails::Engine</p>
54
+
55
+ </div>
56
+
57
+
58
+
59
+
60
+
61
+
62
+
63
+
64
+
65
+ </div>
66
+
67
+ <div id="project-metadata">
68
+
69
+
70
+
71
+ <div id="classindex-section" class="section project-section">
72
+ <h3 class="section-header">Class/Module Index
73
+ <span class="search-toggle"><img src="../images/find.png"
74
+ height="16" width="16" alt="[+]"
75
+ title="show/hide quicksearch" /></span></h3>
76
+ <form action="#" method="get" accept-charset="utf-8" class="initially-hidden">
77
+ <fieldset>
78
+ <legend>Quicksearch</legend>
79
+ <input type="text" name="quicksearch" value=""
80
+ class="quicksearch-field" />
81
+ </fieldset>
82
+ </form>
83
+
84
+ <ul class="link-list">
85
+
86
+ <li><a href="../Resque.html">Resque</a></li>
87
+
88
+ <li><a href="../Resque/ChainedJobWithStatus.html">Resque::ChainedJobWithStatus</a></li>
89
+
90
+ <li><a href="../Resque/Failure.html">Resque::Failure</a></li>
91
+
92
+ <li><a href="../Resque/Job.html">Resque::Job</a></li>
93
+
94
+ <li><a href="../Resque/JobWithStatus.html">Resque::JobWithStatus</a></li>
95
+
96
+ <li><a href="../Resque/Status.html">Resque::Status</a></li>
97
+
98
+ <li><a href="../Resque/Worker.html">Resque::Worker</a></li>
99
+
100
+ <li><a href="../ResqueUi.html">ResqueUi</a></li>
101
+
102
+ <li><a href="../ResqueUi/Cap.html">ResqueUi::Cap</a></li>
103
+
104
+ <li><a href="../ResqueUi/Engine.html">ResqueUi::Engine</a></li>
105
+
106
+ <li><a href="../ResqueScheduler.html">ResqueScheduler</a></li>
107
+
108
+ </ul>
109
+ <div id="no-class-search-results" style="display: none;">No matching classes.</div>
110
+ </div>
111
+
112
+
113
+ </div>
114
+ </div>
115
+
116
+ <div id="documentation">
117
+ <h1 class="class">ResqueUi::Engine</h1>
118
+
119
+ <div id="description" class="description">
120
+
121
+ </div><!-- description -->
122
+
123
+
124
+
125
+
126
+ <div id="5Buntitled-5D" class="documentation-section">
127
+
128
+
129
+
130
+
131
+
132
+
133
+
134
+
135
+ <!-- Methods -->
136
+
137
+ </div><!-- 5Buntitled-5D -->
138
+
139
+
140
+ </div><!-- documentation -->
141
+
142
+ <div id="validator-badges">
143
+ <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
144
+ <p><small>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish
145
+ Rdoc Generator</a> 2</small>.</p>
146
+ </div>
147
+
148
+ </body>
149
+ </html>
150
+
@@ -0,0 +1,157 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
3
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
5
+ <head>
6
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
7
+
8
+ <title>Module: ResqueUi</title>
9
+
10
+ <link rel="stylesheet" href="./rdoc.css" type="text/css" media="screen" />
11
+
12
+ <script src="./js/jquery.js" type="text/javascript" charset="utf-8"></script>
13
+ <script src="./js/thickbox-compressed.js" type="text/javascript" charset="utf-8"></script>
14
+ <script src="./js/quicksearch.js" type="text/javascript" charset="utf-8"></script>
15
+ <script src="./js/darkfish.js" type="text/javascript" charset="utf-8"></script>
16
+
17
+ </head>
18
+ <body id="top" class="module">
19
+
20
+ <div id="metadata">
21
+ <div id="home-metadata">
22
+ <div id="home-section" class="section">
23
+ <h3 class="section-header">
24
+ <a href="./index.html">Home</a>
25
+ <a href="./index.html#classes">Classes</a>
26
+ <a href="./index.html#methods">Methods</a>
27
+ </h3>
28
+ </div>
29
+ </div>
30
+
31
+ <div id="file-metadata">
32
+ <div id="file-list-section" class="section">
33
+ <h3 class="section-header">In Files</h3>
34
+ <div class="section-body">
35
+ <ul>
36
+
37
+ <li><a href="./lib/resque_ui_rb.html?TB_iframe=true&amp;height=550&amp;width=785"
38
+ class="thickbox" title="lib/resque_ui.rb">lib/resque_ui.rb</a></li>
39
+
40
+ <li><a href="./lib/resque_ui/cap_rb.html?TB_iframe=true&amp;height=550&amp;width=785"
41
+ class="thickbox" title="lib/resque_ui/cap.rb">lib/resque_ui/cap.rb</a></li>
42
+
43
+ </ul>
44
+ </div>
45
+ </div>
46
+
47
+
48
+ </div>
49
+
50
+ <div id="class-metadata">
51
+
52
+
53
+
54
+
55
+
56
+ <!-- Namespace Contents -->
57
+ <div id="namespace-list-section" class="section">
58
+ <h3 class="section-header">Namespace</h3>
59
+ <ul class="link-list">
60
+
61
+ <li><span class="type">CLASS</span> <a href="ResqueUi/Cap.html">ResqueUi::Cap</a></li>
62
+
63
+ <li><span class="type">CLASS</span> <a href="ResqueUi/Engine.html">ResqueUi::Engine</a></li>
64
+
65
+ </ul>
66
+ </div>
67
+
68
+
69
+
70
+
71
+
72
+ </div>
73
+
74
+ <div id="project-metadata">
75
+
76
+
77
+
78
+ <div id="classindex-section" class="section project-section">
79
+ <h3 class="section-header">Class/Module Index
80
+ <span class="search-toggle"><img src="./images/find.png"
81
+ height="16" width="16" alt="[+]"
82
+ title="show/hide quicksearch" /></span></h3>
83
+ <form action="#" method="get" accept-charset="utf-8" class="initially-hidden">
84
+ <fieldset>
85
+ <legend>Quicksearch</legend>
86
+ <input type="text" name="quicksearch" value=""
87
+ class="quicksearch-field" />
88
+ </fieldset>
89
+ </form>
90
+
91
+ <ul class="link-list">
92
+
93
+ <li><a href="./Resque.html">Resque</a></li>
94
+
95
+ <li><a href="./Resque/ChainedJobWithStatus.html">Resque::ChainedJobWithStatus</a></li>
96
+
97
+ <li><a href="./Resque/Failure.html">Resque::Failure</a></li>
98
+
99
+ <li><a href="./Resque/Job.html">Resque::Job</a></li>
100
+
101
+ <li><a href="./Resque/JobWithStatus.html">Resque::JobWithStatus</a></li>
102
+
103
+ <li><a href="./Resque/Status.html">Resque::Status</a></li>
104
+
105
+ <li><a href="./Resque/Worker.html">Resque::Worker</a></li>
106
+
107
+ <li><a href="./ResqueUi.html">ResqueUi</a></li>
108
+
109
+ <li><a href="./ResqueUi/Cap.html">ResqueUi::Cap</a></li>
110
+
111
+ <li><a href="./ResqueUi/Engine.html">ResqueUi::Engine</a></li>
112
+
113
+ <li><a href="./ResqueScheduler.html">ResqueScheduler</a></li>
114
+
115
+ </ul>
116
+ <div id="no-class-search-results" style="display: none;">No matching classes.</div>
117
+ </div>
118
+
119
+
120
+ </div>
121
+ </div>
122
+
123
+ <div id="documentation">
124
+ <h1 class="module">ResqueUi</h1>
125
+
126
+ <div id="description" class="description">
127
+
128
+ </div><!-- description -->
129
+
130
+
131
+
132
+
133
+ <div id="5Buntitled-5D" class="documentation-section">
134
+
135
+
136
+
137
+
138
+
139
+
140
+
141
+
142
+ <!-- Methods -->
143
+
144
+ </div><!-- 5Buntitled-5D -->
145
+
146
+
147
+ </div><!-- documentation -->
148
+
149
+ <div id="validator-badges">
150
+ <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
151
+ <p><small>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish
152
+ Rdoc Generator</a> 2</small>.</p>
153
+ </div>
154
+
155
+ </body>
156
+ </html>
157
+
data/rdoc/created.rid ADDED
@@ -0,0 +1,13 @@
1
+ Fri, 16 Sep 2011 16:21:59 -0400
2
+ README.markdown Fri, 16 Sep 2011 15:55:46 -0400
3
+ lib/resque_ui.rb Fri, 16 Sep 2011 14:52:03 -0400
4
+ lib/resque_ui/cap.rb Wed, 14 Sep 2011 16:39:33 -0400
5
+ lib/resque_ui/cap_recipes.rb Wed, 27 Apr 2011 11:46:56 -0400
6
+ lib/resque_ui/overrides/resque/job.rb Fri, 16 Sep 2011 14:33:15 -0400
7
+ lib/resque_ui/overrides/resque/resque.rb Thu, 15 Sep 2011 12:15:57 -0400
8
+ lib/resque_ui/overrides/resque/worker.rb Thu, 15 Sep 2011 12:15:57 -0400
9
+ lib/resque_ui/overrides/resque/failure/failure.rb Fri, 16 Sep 2011 14:50:09 -0400
10
+ lib/resque_ui/overrides/resque_scheduler/resque_scheduler.rb Thu, 15 Sep 2011 11:57:02 -0400
11
+ lib/resque_ui/overrides/resque_status/chained_job_with_status.rb Thu, 15 Sep 2011 12:06:19 -0400
12
+ lib/resque_ui/overrides/resque_status/job_with_status.rb Thu, 15 Sep 2011 12:06:45 -0400
13
+ lib/resque_ui/overrides/resque_status/status.rb Thu, 15 Sep 2011 12:07:02 -0400
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file