que_view 0.0.1 → 0.0.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: b77d4ef6cb2aa616ac40ff47f98570756efd4873
4
- data.tar.gz: 8ae982a7fd4d852b057b554a95b584bc441f4f75
3
+ metadata.gz: 2fcea4b87adeac6a288fcc4fe6b8a8bdf9de934e
4
+ data.tar.gz: 6196fff62c0e3f1126ec68645a05a32868f4a22f
5
5
  SHA512:
6
- metadata.gz: bb0ee81f324a598019e9d8439f7bce18c138fc7e7c2e75938c84f74d95956f2e1c04a9ba262f09d211fb5a5b7557b68d2ff8e942e1415e8316370c38d279b3fa
7
- data.tar.gz: 0eeb83804f71d29b39422efa8c2315b1a847ff2dc41d5fecc4673471bfc6a431e523624f0e21287247d61da972c3b0c12b187fbd761d145c44631efeef4b98a2
6
+ metadata.gz: 19d67c93081446d08a545b1653430ed26486fcb42d29ef7987810bd83b27b3937b28bf303f11efe165c898d4107fb4782788f43cb430a997cd871eb837ac0811
7
+ data.tar.gz: caf111cad2459fc726b6fe803f2a33e68abacd6192462f54591863cafa14b18472a273c4d08b035d0fc881fa396fb8dabe9d99e422b0fac25e86d4fadcc69ada
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.0.2
2
+
3
+ - Fixing a time zone bug when displaying scheduled times for the jobs
4
+
1
5
  ## 0.0.1
2
6
 
3
7
  - initial release to provide visibility into scheduled Que tasks
data/README.md CHANGED
@@ -4,6 +4,8 @@ Visibility into scheuled Que jobs.
4
4
 
5
5
  [Que](https://github.com/chanks/que)
6
6
 
7
+ ![screen shot 2014-08-05 at 11 50 46](https://cloud.githubusercontent.com/assets/697418/3806010/9d4a06dc-1c42-11e4-9616-9bc0a0b50679.png)
8
+
7
9
  ## Installation
8
10
 
9
11
  Add this line to your application’s Gemfile:
@@ -333,8 +333,6 @@
333
333
  <%= alert %>
334
334
  <% elsif notice %>
335
335
  <%= notice %>
336
- <% elsif Rails.env.development? %>
337
- Do not use development information to make decisions about your production environment
338
336
  <% else %>
339
337
  <%= link_to "QueView", root_path %>
340
338
  <% end %>
@@ -18,17 +18,19 @@
18
18
  </tr>
19
19
  </thead>
20
20
  <tbody>
21
- <% @jobs.each do |job| %>
22
- <tr>
23
- <td><%= job.priority %></td>
24
- <td><%= job.run_at %></td>
25
- <td><%= job.job_id %></td>
26
- <td><%= job.job_class %></td>
27
- <td><%= job.args %></td>
28
- <td><%= job.error_count %></td>
29
- <td><%= job.last_error %></td>
30
- <td><%= job.queue %></td>
31
- </tr>
21
+ <% Time.use_zone("UTC") do %>
22
+ <% @jobs.each do |job| %>
23
+ <tr>
24
+ <td><%= job.priority %></td>
25
+ <td><%= job.run_at %></td>
26
+ <td><%= job.job_id %></td>
27
+ <td><%= job.job_class %></td>
28
+ <td><%= job.args %></td>
29
+ <td><%= job.error_count %></td>
30
+ <td><%= job.last_error %></td>
31
+ <td><%= job.queue %></td>
32
+ </tr>
33
+ <% end %>
32
34
  <% end %>
33
35
  </tbody>
34
36
  </table>
@@ -1,3 +1,3 @@
1
1
  module QueView
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: que_view
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Niko Roberts
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2014-08-04 00:00:00.000000000 Z
13
+ date: 2015-02-10 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: que
@@ -131,7 +131,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
131
131
  version: '0'
132
132
  requirements: []
133
133
  rubyforge_project:
134
- rubygems_version: 2.2.2
134
+ rubygems_version: 2.4.4
135
135
  signing_key:
136
136
  specification_version: 4
137
137
  summary: Visibility into scheduled Que tasks