resque_ui 3.2.2 → 3.2.3

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,3 +1,7 @@
1
+ == 3.2.3 2011-11-15
2
+
3
+ * Fixes resque-cleaner UI bug. It was always showing Just now for when the job was retried.
4
+
1
5
  == 3.2.2 2011-11-15
2
6
 
3
7
  * Initialize the worker to nil.
data/VERSION.yml CHANGED
@@ -1,5 +1,5 @@
1
1
  ---
2
2
  :major: 3
3
3
  :minor: 2
4
- :patch: 2
4
+ :patch: 3
5
5
  :build:
@@ -77,7 +77,7 @@
77
77
  <a href="<%= u(:workers, job['worker']) %>"><%= job['worker'].split(':')[0...2].join(':') %></a> on <b class='queue-tag'><%= job['queue'] %></b > at <b><span class="time"><%= Time.parse(job['failed_at']).strftime(date_format) %></span></b>
78
78
  <% if job['retried_at'] %>
79
79
  <div class='retried'>
80
- Retried <b><span class="time"><%= job['retried_at'] %></span></b>
80
+ Retried <b><span class="time"><%= Time.parse(job['retried_at']).strftime(date_format) %></span></b>
81
81
  </div>
82
82
  <% end %>
83
83
  </dd>
data/resque_ui.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{resque_ui}
8
- s.version = "3.2.2"
8
+ s.version = "3.2.3"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = [%q{Kevin Tyll}]
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: resque_ui
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 3.2.2
5
+ version: 3.2.3
6
6
  platform: ruby
7
7
  authors:
8
8
  - Kevin Tyll