delayed_job_dashboard 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
data/README.rdoc CHANGED
@@ -9,11 +9,7 @@ happening, especially during development when errors are frequent. Features incl
9
9
  * auto refresh (every 5 seconds) of the counts and lists. For performance reasons, it will stop after 2 minutes, but
10
10
  can be restarted
11
11
 
12
- === Dashboard Screenshot
13
- link:screen1.png
14
-
15
- === Job detail screenshot
16
- link:screen2.png
12
+ Screenshots can be {seen on the wiki}[https://github.com/deafgreatdane/delayed_job_dashboard/wiki]
17
13
 
18
14
  This gem operates as a mountable engine, as such is only suitable for Rails 3.1 or greater.
19
15
 
@@ -37,7 +37,11 @@
37
37
  - @job.payload_object.each_pair do |sym,obj|
38
38
  %li
39
39
  %b= sym
40
- = obj
40
+ - if obj.is_a?(ActiveRecord::Base)
41
+ = obj.class
42
+ = " id=#{obj.id}"
43
+ - else
44
+ = obj
41
45
  - else
42
46
  = @job.payload_object.inspect
43
47
  %tr
@@ -1,6 +1,6 @@
1
1
  !!!
2
2
  %head
3
- %title MY APP
3
+ %title Delayed Job Dashboard
4
4
  = javascript_include_tag "application"
5
5
  = stylesheet_link_tag "delayed_job_dashboard","application"
6
6
  %body
@@ -1,3 +1,3 @@
1
1
  module DelayedJobDashboard
2
- VERSION = "0.2.0"
2
+ VERSION = "0.2.1"
3
3
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: delayed_job_dashboard
3
3
  version: !ruby/object:Gem::Version
4
- hash: 23
4
+ hash: 21
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 2
9
- - 0
10
- version: 0.2.0
9
+ - 1
10
+ version: 0.2.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Ben Johnson
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-09-09 00:00:00 Z
18
+ date: 2011-09-11 00:00:00 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  name: rails