sidetiq 0.7.1 → 0.7.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 677e4b065e4e98272d7fc0c4521d9bc8b0228221
4
- data.tar.gz: 6f852dc2c1895f159ce90f5d4b6336deae2c6edd
3
+ metadata.gz: 9a7565ecd88f624a598df7a45b68e1e0d2a2105f
4
+ data.tar.gz: 1dc01498611f425fda6f0a73e0fe9246f84d7fdf
5
5
  SHA512:
6
- metadata.gz: d4730133117aadd2054026b7805c509d7d57f5cae690a7ae5f361b0da37d3893e8ea74b313547349e578d926c6881e112b1e53c9a470b00d5837b901909b718a
7
- data.tar.gz: d574a8433ae34f51b8b8cf59fe29cd5372878339b2e86d9185039888b158f4c168ce5f8e03d12653c599ae60f793d2db3c788484d93dfa7b6876743cb8fdca1b
6
+ metadata.gz: cc2e8420e1931c96b2c81c36a3ba3a64e177dc82c1e8815998585d27d5d7ea143dca17c88fa71202f3bce7d19fbb4818977a8d3eaad1852fbafb8ffc1ee97cb7
7
+ data.tar.gz: c1f2506614c80787179cc77c533d2615cac46356e2cc09dcbe7eaf74890e256c6fad42e84c89f529fbcc22ecaa75615cdae0330048a237ab37cd5cd30f62979b
@@ -1,3 +1,15 @@
1
+ 0.7.2
2
+ -----
3
+
4
+ - Fix NoMethodError with nil value in variable in web
5
+ dashboard [tmartyny]
6
+
7
+ 0.7.1
8
+ -----
9
+
10
+ - Remove unnecessary linking to Sidekiq::Manager
11
+ - Updated gem dependencies
12
+
1
13
  0.7.0
2
14
  -----
3
15
 
@@ -8,7 +8,7 @@ module Sidetiq
8
8
  MINOR = 7
9
9
 
10
10
  # Public: Sidetiq patch level.
11
- PATCH = 1
11
+ PATCH = 2
12
12
 
13
13
  # Public: Sidetiq version suffix.
14
14
  SUFFIX = nil
@@ -23,10 +23,11 @@
23
23
 
24
24
  <% @history.each do |entry| %>
25
25
  <% entry = Sidekiq.load_json(entry).symbolize_keys %>
26
+ <% runtime = entry[:runtime]&.round(3) || "N/A" %>
26
27
  <tr class="<%= 'error' if entry[:status] == 'failure' %>">
27
28
  <td><%= entry[:status].capitalize %></td>
28
29
  <td><%= Time.parse(entry[:timestamp]).strftime("%m/%d/%Y %I:%M:%S%p") %></td>
29
- <td><%= entry[:runtime].round(3) %> s</td>
30
+ <td><%= runtime %> s</td>
30
31
  <td>
31
32
  <% if entry[:status] == 'failure' %>
32
33
  <a class="backtrace" href="#" onclick="$(this).next().toggle(); return false">
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sidetiq
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.1
4
+ version: 0.7.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tobias Svensson