resque_ui 3.1.4 → 3.1.5

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,3 +1,48 @@
1
+ == 3.1.5 2011-11-01
2
+
3
+ * Added the ability to set an optional :resque_rake variable in your deploy.rb file that is used by the resque:work task if set.
4
+ -This allows you to set alternate options, particularly useful for jruby.
5
+ ex.
6
+ go through jexec so we get the right path and java settings
7
+ set :rake, "script/jexec rake"
8
+ set :resque_rake, "script/jexec -p rake" #extra memory settings for resque workers
9
+
10
+ -the jexec file in script/ may look like:
11
+
12
+ scriptdir=`dirname $0`
13
+
14
+ # Hack to get things working under capistrano (used for torquebox to get rake working, still needed?)
15
+ if [ "$1" = "-j" ]; then
16
+ shift
17
+ export JRUBY_HOME=$1
18
+ shift
19
+ fi
20
+
21
+ if [ "$1" = "-m" ]; then
22
+ shift
23
+ export JAVA_MEM="-Xmx2048m -Xms256m -XX:PermSize=1024m -XX:MaxPermSize=1024m"
24
+ export JAVA_STACK=-Xss4096k
25
+ fi
26
+
27
+ export PATH=$scriptdir:/opt/jruby/bin:$PATH
28
+
29
+ # Configuration settings for all Rake Tasks and Resque Workers
30
+ if [ "$1" = "-p" ]; then
31
+ shift
32
+ # Set Heap Space for Young/Eden GC: 512MB
33
+ # Initial Heap size: 2GB
34
+ # Max Heap size: 4GB
35
+ # Use server JVM
36
+ # PermGenSize: 64MB
37
+ # Max PermGenSize: 128MB
38
+ # Thread Stack Size: 1024k
39
+ export JRUBY_OPTS="-J-Xmn512m -J-Xms2048m -J-Xmx4096m -J-server -J-XX:PermSize=64m -J-XX:MaxPermSize=128m -J-Xss1024k"
40
+ echo "JRUBY_OPTS=${JRUBY_OPTS}"
41
+ nohup $* & #cap task runs in background
42
+ else
43
+ exec $*
44
+ fi
45
+
1
46
  == 3.1.4 2011-10-27
2
47
 
3
48
  * Changed all the cap tasks to use the :resque role.
data/VERSION.yml CHANGED
@@ -1,5 +1,5 @@
1
1
  ---
2
2
  :major: 3
3
3
  :minor: 1
4
- :patch: 4
4
+ :patch: 5
5
5
  :build:
@@ -3,17 +3,65 @@
3
3
  # ====================================
4
4
 
5
5
 
6
- #You must set the path to your rake task in your deploy.rb file.
6
+ #You must set the path to your rake executable in your deploy.rb file.
7
7
  #ex.
8
8
  # set :rake, "/opt/ruby-enterprise-1.8.6-20090421/bin/rake"
9
+ #Optionally, you can set another variable, :resque_rake. This will be used for the resque:work task if set.
10
+ #This allows you to set alternate options, particularly useful for jruby.
11
+ #ex.
12
+ #go through jexec so we get the right path and java settings
13
+ # set :rake, "script/jexec rake"
14
+ # set :resque_rake, "script/jexec -p rake" #extra memory settings for resque workers
15
+
16
+ #the jexec file in script/ may look like:
17
+
18
+ #scriptdir=`dirname $0`
19
+ #
20
+ ## Hack to get things working under capistrano (used for torquebox to get rake working, still needed?)
21
+ #if [ "$1" = "-j" ]; then
22
+ # shift
23
+ # export JRUBY_HOME=$1
24
+ # shift
25
+ #fi
26
+ #
27
+ #if [ "$1" = "-m" ]; then
28
+ # shift
29
+ # export JAVA_MEM="-Xmx2048m -Xms256m -XX:PermSize=1024m -XX:MaxPermSize=1024m"
30
+ # export JAVA_STACK=-Xss4096k
31
+ #fi
32
+ #
33
+ #export PATH=$scriptdir:/opt/jruby/bin:$PATH
34
+ #
35
+ ## Configuration settings for all Rake Tasks and Resque Workers
36
+ #if [ "$1" = "-p" ]; then
37
+ # shift
38
+ # # Set Heap Space for Young/Eden GC: 512MB
39
+ # # Initial Heap size: 2GB
40
+ # # Max Heap size: 4GB
41
+ # # Use server JVM
42
+ # # PermGenSize: 64MB
43
+ # # Max PermGenSize: 128MB
44
+ # # Thread Stack Size: 1024k
45
+ # export JRUBY_OPTS="-J-Xmn512m -J-Xms2048m -J-Xmx4096m -J-server -J-XX:PermSize=64m -J-XX:MaxPermSize=128m -J-Xss1024k"
46
+ # echo "JRUBY_OPTS=${JRUBY_OPTS}"
47
+ # nohup $* & #cap task runs in background
48
+ #else
49
+ # exec $*
50
+ #fi
51
+
9
52
  Capistrano::Configuration.instance(:must_exist).load do
53
+
54
+ def get_rake
55
+ fetch(:resque_rake, fetch(:rake, "rake"))
56
+ end
57
+
10
58
  namespace :resque do
11
59
  desc "start a resque worker. optional arg: host=ip queue=name"
12
60
  task :work, :roles => :resque do
13
61
  default_run_options[:pty] = true
14
62
  hosts = ENV['host'] || find_servers_for_task(current_task).collect { |s| s.host }
15
63
  queue = ENV['queue'] || '*'
16
- rake = fetch(:rake, "rake")
64
+ rake = get_rake
17
65
  run("cd #{current_path}; nohup #{rake} RAILS_ENV=#{stage} QUEUE=#{queue} resque:work >> log/resque_worker.log 2>&1", :hosts => hosts)
18
66
  end
19
67
 
@@ -57,7 +105,7 @@ Capistrano::Configuration.instance(:must_exist).load do
57
105
  hosts = ENV['host'] || find_servers_for_task(current_task).collect { |s| s.host }
58
106
  queue = ENV['queue'] || '*'
59
107
  count = ENV['count'] || '1'
60
- rake = fetch(:rake, "rake")
108
+ rake = get_rake
61
109
  run("cd #{current_path}; nohup #{rake} RAILS_ENV=#{stage} COUNT=#{count} QUEUE=#{queue} resque:work >> log/resque_worker.log 2>&1", :hosts => hosts)
62
110
  end
63
111
 
data/rdoc/Object.html ADDED
@@ -0,0 +1,199 @@
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: Object</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_recipes_rb.html?TB_iframe=true&amp;height=550&amp;width=785"
38
+ class="thickbox" title="lib/resque_ui/cap_recipes.rb">lib/resque_ui/cap_recipes.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"></p>
54
+
55
+ </div>
56
+
57
+
58
+
59
+
60
+
61
+
62
+
63
+ <!-- Method Quickref -->
64
+ <div id="method-list-section" class="section">
65
+ <h3 class="section-header">Methods</h3>
66
+ <ul class="link-list">
67
+
68
+ <li><a href="#method-i-get_rake">#get_rake</a></li>
69
+
70
+ </ul>
71
+ </div>
72
+
73
+
74
+
75
+ </div>
76
+
77
+ <div id="project-metadata">
78
+
79
+
80
+
81
+ <div id="classindex-section" class="section project-section">
82
+ <h3 class="section-header">Class/Module Index
83
+ <span class="search-toggle"><img src="./images/find.png"
84
+ height="16" width="16" alt="[+]"
85
+ title="show/hide quicksearch" /></span></h3>
86
+ <form action="#" method="get" accept-charset="utf-8" class="initially-hidden">
87
+ <fieldset>
88
+ <legend>Quicksearch</legend>
89
+ <input type="text" name="quicksearch" value=""
90
+ class="quicksearch-field" />
91
+ </fieldset>
92
+ </form>
93
+
94
+ <ul class="link-list">
95
+
96
+ <li><a href="./Resque.html">Resque</a></li>
97
+
98
+ <li><a href="./Resque/ChainedJobWithStatus.html">Resque::ChainedJobWithStatus</a></li>
99
+
100
+ <li><a href="./Resque/Job.html">Resque::Job</a></li>
101
+
102
+ <li><a href="./Resque/JobWithStatus.html">Resque::JobWithStatus</a></li>
103
+
104
+ <li><a href="./Resque/Status.html">Resque::Status</a></li>
105
+
106
+ <li><a href="./Resque/Worker.html">Resque::Worker</a></li>
107
+
108
+ <li><a href="./ResqueUi.html">ResqueUi</a></li>
109
+
110
+ <li><a href="./ResqueUi/Cap.html">ResqueUi::Cap</a></li>
111
+
112
+ <li><a href="./ResqueUi/Engine.html">ResqueUi::Engine</a></li>
113
+
114
+ <li><a href="./Object.html">Object</a></li>
115
+
116
+ <li><a href="./ResqueScheduler.html">ResqueScheduler</a></li>
117
+
118
+ </ul>
119
+ <div id="no-class-search-results" style="display: none;">No matching classes.</div>
120
+ </div>
121
+
122
+
123
+ </div>
124
+ </div>
125
+
126
+ <div id="documentation">
127
+ <h1 class="class">Object</h1>
128
+
129
+ <div id="description" class="description">
130
+
131
+ </div><!-- description -->
132
+
133
+
134
+
135
+
136
+ <div id="5Buntitled-5D" class="documentation-section">
137
+
138
+
139
+
140
+
141
+
142
+
143
+
144
+
145
+ <!-- Methods -->
146
+
147
+ <div id="public-instance-method-details" class="method-section section">
148
+ <h3 class="section-header">Public Instance Methods</h3>
149
+
150
+
151
+ <div id="get_rake-method" class="method-detail ">
152
+ <a name="method-i-get_rake"></a>
153
+
154
+
155
+ <div class="method-heading">
156
+ <span class="method-name">get_rake</span><span
157
+ class="method-args">()</span>
158
+ <span class="method-click-advice">click to toggle source</span>
159
+ </div>
160
+
161
+
162
+ <div class="method-description">
163
+
164
+
165
+
166
+
167
+
168
+ <div class="method-source-code" id="get_rake-source">
169
+ <pre>
170
+ <span class="ruby-comment"># File lib/resque_ui/cap_recipes.rb, line 54</span>
171
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">get_rake</span>
172
+ <span class="ruby-identifier">fetch</span>(<span class="ruby-value">:resque_rake</span>, <span class="ruby-identifier">fetch</span>(<span class="ruby-value">:rake</span>, <span class="ruby-string">&quot;rake&quot;</span>))
173
+ <span class="ruby-keyword">end</span></pre>
174
+ </div><!-- get_rake-source -->
175
+
176
+ </div>
177
+
178
+
179
+
180
+
181
+ </div><!-- get_rake-method -->
182
+
183
+
184
+ </div><!-- public-instance-method-details -->
185
+
186
+ </div><!-- 5Buntitled-5D -->
187
+
188
+
189
+ </div><!-- documentation -->
190
+
191
+ <div id="validator-badges">
192
+ <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
193
+ <p><small>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish
194
+ Rdoc Generator</a> 2</small>.</p>
195
+ </div>
196
+
197
+ </body>
198
+ </html>
199
+
@@ -115,6 +115,8 @@
115
115
 
116
116
  <li><a href="../ResqueUi/Engine.html">ResqueUi::Engine</a></li>
117
117
 
118
+ <li><a href="../Object.html">Object</a></li>
119
+
118
120
  <li><a href="../ResqueScheduler.html">ResqueScheduler</a></li>
119
121
 
120
122
  </ul>
data/rdoc/Resque/Job.html CHANGED
@@ -50,7 +50,7 @@
50
50
  <div id="parent-class-section" class="section">
51
51
  <h3 class="section-header">Parent</h3>
52
52
 
53
- <p class="link">Object</p>
53
+ <p class="link"><a href="../Object.html">Object</a></p>
54
54
 
55
55
  </div>
56
56
 
@@ -111,6 +111,8 @@
111
111
 
112
112
  <li><a href="../ResqueUi/Engine.html">ResqueUi::Engine</a></li>
113
113
 
114
+ <li><a href="../Object.html">Object</a></li>
115
+
114
116
  <li><a href="../ResqueScheduler.html">ResqueScheduler</a></li>
115
117
 
116
118
  </ul>
@@ -50,7 +50,7 @@
50
50
  <div id="parent-class-section" class="section">
51
51
  <h3 class="section-header">Parent</h3>
52
52
 
53
- <p class="link">Object</p>
53
+ <p class="link"><a href="../Object.html">Object</a></p>
54
54
 
55
55
  </div>
56
56
 
@@ -121,6 +121,8 @@
121
121
 
122
122
  <li><a href="../ResqueUi/Engine.html">ResqueUi::Engine</a></li>
123
123
 
124
+ <li><a href="../Object.html">Object</a></li>
125
+
124
126
  <li><a href="../ResqueScheduler.html">ResqueScheduler</a></li>
125
127
 
126
128
  </ul>
@@ -50,7 +50,7 @@
50
50
  <div id="parent-class-section" class="section">
51
51
  <h3 class="section-header">Parent</h3>
52
52
 
53
- <p class="link">Object</p>
53
+ <p class="link"><a href="../Object.html">Object</a></p>
54
54
 
55
55
  </div>
56
56
 
@@ -119,6 +119,8 @@
119
119
 
120
120
  <li><a href="../ResqueUi/Engine.html">ResqueUi::Engine</a></li>
121
121
 
122
+ <li><a href="../Object.html">Object</a></li>
123
+
122
124
  <li><a href="../ResqueScheduler.html">ResqueScheduler</a></li>
123
125
 
124
126
  </ul>
@@ -50,7 +50,7 @@
50
50
  <div id="parent-class-section" class="section">
51
51
  <h3 class="section-header">Parent</h3>
52
52
 
53
- <p class="link">Object</p>
53
+ <p class="link"><a href="../Object.html">Object</a></p>
54
54
 
55
55
  </div>
56
56
 
@@ -155,6 +155,8 @@
155
155
 
156
156
  <li><a href="../ResqueUi/Engine.html">ResqueUi::Engine</a></li>
157
157
 
158
+ <li><a href="../Object.html">Object</a></li>
159
+
158
160
  <li><a href="../ResqueScheduler.html">ResqueScheduler</a></li>
159
161
 
160
162
  </ul>
data/rdoc/Resque.html CHANGED
@@ -136,6 +136,8 @@
136
136
 
137
137
  <li><a href="./ResqueUi/Engine.html">ResqueUi::Engine</a></li>
138
138
 
139
+ <li><a href="./Object.html">Object</a></li>
140
+
139
141
  <li><a href="./ResqueScheduler.html">ResqueScheduler</a></li>
140
142
 
141
143
  </ul>
@@ -115,6 +115,8 @@
115
115
 
116
116
  <li><a href="./ResqueUi/Engine.html">ResqueUi::Engine</a></li>
117
117
 
118
+ <li><a href="./Object.html">Object</a></li>
119
+
118
120
  <li><a href="./ResqueScheduler.html">ResqueScheduler</a></li>
119
121
 
120
122
  </ul>
@@ -50,7 +50,7 @@
50
50
  <div id="parent-class-section" class="section">
51
51
  <h3 class="section-header">Parent</h3>
52
52
 
53
- <p class="link">Object</p>
53
+ <p class="link"><a href="../Object.html">Object</a></p>
54
54
 
55
55
  </div>
56
56
 
@@ -101,6 +101,8 @@
101
101
 
102
102
  <li><a href="../ResqueUi/Engine.html">ResqueUi::Engine</a></li>
103
103
 
104
+ <li><a href="../Object.html">Object</a></li>
105
+
104
106
  <li><a href="../ResqueScheduler.html">ResqueScheduler</a></li>
105
107
 
106
108
  </ul>
@@ -101,6 +101,8 @@
101
101
 
102
102
  <li><a href="../ResqueUi/Engine.html">ResqueUi::Engine</a></li>
103
103
 
104
+ <li><a href="../Object.html">Object</a></li>
105
+
104
106
  <li><a href="../ResqueScheduler.html">ResqueScheduler</a></li>
105
107
 
106
108
  </ul>
data/rdoc/ResqueUi.html CHANGED
@@ -108,6 +108,8 @@
108
108
 
109
109
  <li><a href="./ResqueUi/Engine.html">ResqueUi::Engine</a></li>
110
110
 
111
+ <li><a href="./Object.html">Object</a></li>
112
+
111
113
  <li><a href="./ResqueScheduler.html">ResqueScheduler</a></li>
112
114
 
113
115
  </ul>
data/rdoc/created.rid CHANGED
@@ -1,8 +1,8 @@
1
- Thu, 27 Oct 2011 13:17:58 -0400
1
+ Tue, 01 Nov 2011 16:36:50 -0400
2
2
  README.markdown Thu, 27 Oct 2011 13:09:37 -0400
3
3
  lib/resque_ui.rb Thu, 13 Oct 2011 11:42:34 -0400
4
4
  lib/resque_ui/cap.rb Wed, 14 Sep 2011 16:39:33 -0400
5
- lib/resque_ui/cap_recipes.rb Thu, 27 Oct 2011 12:28:13 -0400
5
+ lib/resque_ui/cap_recipes.rb Tue, 01 Nov 2011 16:28:34 -0400
6
6
  lib/resque_ui/overrides/resque/job.rb Fri, 16 Sep 2011 14:33:15 -0400
7
7
  lib/resque_ui/overrides/resque/resque.rb Thu, 15 Sep 2011 12:15:57 -0400
8
8
  lib/resque_ui/overrides/resque/worker.rb Tue, 11 Oct 2011 14:29:01 -0400
data/rdoc/index.html CHANGED
@@ -6,7 +6,7 @@
6
6
  <head>
7
7
  <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
8
8
 
9
- <title>ResqueUi 3.1.4</title>
9
+ <title>ResqueUi 3.1.5</title>
10
10
 
11
11
  <link type="text/css" media="screen" href="rdoc.css" rel="stylesheet" />
12
12
 
@@ -19,10 +19,10 @@
19
19
  <body class="indexpage">
20
20
 
21
21
 
22
- <h1>ResqueUi 3.1.4</h1>
22
+ <h1>ResqueUi 3.1.5</h1>
23
23
 
24
24
 
25
- <p>This is the API documentation for 'ResqueUi 3.1.4'.</p>
25
+ <p>This is the API documentation for 'ResqueUi 3.1.5'.</p>
26
26
 
27
27
 
28
28
 
@@ -49,6 +49,8 @@
49
49
 
50
50
  <li class="class"><a href="ResqueUi/Engine.html">ResqueUi::Engine</a></li>
51
51
 
52
+ <li class="class"><a href="Object.html">Object</a></li>
53
+
52
54
  <li class="module"><a href="ResqueScheduler.html">ResqueScheduler</a></li>
53
55
 
54
56
  </ul>
@@ -92,6 +94,8 @@
92
94
 
93
95
  <li><a href="Resque/JobWithStatus.html#method-i-counter">#counter &mdash; Resque::JobWithStatus</a></li>
94
96
 
97
+ <li><a href="Object.html#method-i-get_rake">#get_rake &mdash; Object</a></li>
98
+
95
99
  <li><a href="Resque/Worker.html#method-i-id">#id &mdash; Resque::Worker</a></li>
96
100
 
97
101
  <li><a href="Resque/JobWithStatus.html#method-i-incr_counter">#incr_counter &mdash; Resque::JobWithStatus</a></li>
@@ -100,10 +104,10 @@
100
104
 
101
105
  <li><a href="Resque/Worker.html#method-i-local_ip">#local_ip &mdash; Resque::Worker</a></li>
102
106
 
103
- <li><a href="Resque/ChainedJobWithStatus.html#method-i-name">#name &mdash; Resque::ChainedJobWithStatus</a></li>
104
-
105
107
  <li><a href="Resque/JobWithStatus.html#method-i-name">#name &mdash; Resque::JobWithStatus</a></li>
106
108
 
109
+ <li><a href="Resque/ChainedJobWithStatus.html#method-i-name">#name &mdash; Resque::ChainedJobWithStatus</a></li>
110
+
107
111
  <li><a href="Resque/Job.html#method-i-perform">#perform &mdash; Resque::Job</a></li>
108
112
 
109
113
  <li><a href="Resque/Worker.html#method-i-pid">#pid &mdash; Resque::Worker</a></li>
@@ -6,7 +6,7 @@
6
6
  <head>
7
7
  <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
8
8
 
9
- <title>File: cap.rb [ResqueUi 3.1.4]</title>
9
+ <title>File: cap.rb [ResqueUi 3.1.5]</title>
10
10
 
11
11
  <link type="text/css" media="screen" href="../../rdoc.css" rel="stylesheet" />
12
12
 
@@ -6,7 +6,7 @@
6
6
  <head>
7
7
  <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
8
8
 
9
- <title>File: cap_recipes.rb [ResqueUi 3.1.4]</title>
9
+ <title>File: cap_recipes.rb [ResqueUi 3.1.5]</title>
10
10
 
11
11
  <link type="text/css" media="screen" href="../../rdoc.css" rel="stylesheet" />
12
12
 
@@ -24,7 +24,7 @@
24
24
  <div id="metadata">
25
25
  <dl>
26
26
  <dt class="modified-date">Last Modified</dt>
27
- <dd class="modified-date">Thu Oct 27 12:28:13 -0400 2011</dd>
27
+ <dd class="modified-date">Tue Nov 01 16:28:34 -0400 2011</dd>
28
28
 
29
29
 
30
30
  <dt class="requires">Requires</dt>
@@ -6,7 +6,7 @@
6
6
  <head>
7
7
  <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
8
8
 
9
- <title>File: job.rb [ResqueUi 3.1.4]</title>
9
+ <title>File: job.rb [ResqueUi 3.1.5]</title>
10
10
 
11
11
  <link type="text/css" media="screen" href="../../../../rdoc.css" rel="stylesheet" />
12
12
 
@@ -6,7 +6,7 @@
6
6
  <head>
7
7
  <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
8
8
 
9
- <title>File: resque.rb [ResqueUi 3.1.4]</title>
9
+ <title>File: resque.rb [ResqueUi 3.1.5]</title>
10
10
 
11
11
  <link type="text/css" media="screen" href="../../../../rdoc.css" rel="stylesheet" />
12
12
 
@@ -6,7 +6,7 @@
6
6
  <head>
7
7
  <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
8
8
 
9
- <title>File: worker.rb [ResqueUi 3.1.4]</title>
9
+ <title>File: worker.rb [ResqueUi 3.1.5]</title>
10
10
 
11
11
  <link type="text/css" media="screen" href="../../../../rdoc.css" rel="stylesheet" />
12
12
 
@@ -6,7 +6,7 @@
6
6
  <head>
7
7
  <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
8
8
 
9
- <title>File: resque_scheduler.rb [ResqueUi 3.1.4]</title>
9
+ <title>File: resque_scheduler.rb [ResqueUi 3.1.5]</title>
10
10
 
11
11
  <link type="text/css" media="screen" href="../../../../rdoc.css" rel="stylesheet" />
12
12
 
@@ -6,7 +6,7 @@
6
6
  <head>
7
7
  <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
8
8
 
9
- <title>File: chained_job_with_status.rb [ResqueUi 3.1.4]</title>
9
+ <title>File: chained_job_with_status.rb [ResqueUi 3.1.5]</title>
10
10
 
11
11
  <link type="text/css" media="screen" href="../../../../rdoc.css" rel="stylesheet" />
12
12
 
@@ -6,7 +6,7 @@
6
6
  <head>
7
7
  <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
8
8
 
9
- <title>File: job_with_status.rb [ResqueUi 3.1.4]</title>
9
+ <title>File: job_with_status.rb [ResqueUi 3.1.5]</title>
10
10
 
11
11
  <link type="text/css" media="screen" href="../../../../rdoc.css" rel="stylesheet" />
12
12
 
@@ -6,7 +6,7 @@
6
6
  <head>
7
7
  <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
8
8
 
9
- <title>File: status.rb [ResqueUi 3.1.4]</title>
9
+ <title>File: status.rb [ResqueUi 3.1.5]</title>
10
10
 
11
11
  <link type="text/css" media="screen" href="../../../../rdoc.css" rel="stylesheet" />
12
12
 
@@ -6,7 +6,7 @@
6
6
  <head>
7
7
  <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
8
8
 
9
- <title>File: resque_ui.rb [ResqueUi 3.1.4]</title>
9
+ <title>File: resque_ui.rb [ResqueUi 3.1.5]</title>
10
10
 
11
11
  <link type="text/css" media="screen" href="../rdoc.css" rel="stylesheet" />
12
12
 
data/resque_ui.gemspec CHANGED
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{resque_ui}
8
- s.version = "3.1.4"
8
+ s.version = "3.1.5"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Kevin Tyll"]
12
- s.date = %q{2011-10-27}
12
+ s.date = %q{2011-11-01}
13
13
  s.description = %q{A Rails UI for Resque for managing workers, failures and schedules.}
14
14
  s.email = %q{kevintyll@gmail.com}
15
15
  s.extra_rdoc_files = [
@@ -68,6 +68,7 @@ Gem::Specification.new do |s|
68
68
  "lib/tasks/failure.rake",
69
69
  "lib/tasks/scheduler.rake",
70
70
  "lib/tasks/worker.rake",
71
+ "rdoc/Object.html",
71
72
  "rdoc/Resque.html",
72
73
  "rdoc/Resque/ChainedJobWithStatus.html",
73
74
  "rdoc/Resque/Job.html",
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: resque_ui
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 3.1.4
5
+ version: 3.1.5
6
6
  platform: ruby
7
7
  authors:
8
8
  - Kevin Tyll
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2011-10-27 00:00:00 -04:00
13
+ date: 2011-11-01 00:00:00 -04:00
14
14
  default_executable:
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
@@ -129,6 +129,7 @@ files:
129
129
  - lib/tasks/failure.rake
130
130
  - lib/tasks/scheduler.rake
131
131
  - lib/tasks/worker.rake
132
+ - rdoc/Object.html
132
133
  - rdoc/Resque.html
133
134
  - rdoc/Resque/ChainedJobWithStatus.html
134
135
  - rdoc/Resque/Job.html