resque-analytics 0.6.0 → 0.6.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ee6adecc8664d4c813d51b0d276a09f3805eef5a
4
- data.tar.gz: b3f61c77bfea5cc51b7bd9d1db1d2cdfcc5b786c
3
+ metadata.gz: 8de6baa0566eba06c36469565d9009916a5cf90e
4
+ data.tar.gz: 7663f90c6cc5e2d077d4ffca27df142bf38e19fc
5
5
  SHA512:
6
- metadata.gz: d514eba2882be8a2625773e4d4411fafc7a044159fdeaecae0b516ff43d73722bd79502fef94056a2dda4b8ad2dce5f5cd25106b3420c370cfa2e63569756620
7
- data.tar.gz: 72db95f784fe75998f2bb4714c8e110fe453126d05b305c40840503b98336884555c8a6ad29562abf0f4cd754b518f5a5a6c98936f8407031e32361a08850508
6
+ metadata.gz: 3c432ae57588fc5702e2aab0a90e5de810a0614787e02c874a4b5fc02a1991a1337941f764804997c9670085bce3175736257fdae6fb2b0bbb8ee9a7e1b80a83
7
+ data.tar.gz: dd1bd16df30452dfdb7a16a19dfe5db7469c340d36e20580bf12db8a96c4dccf075b9ee83fd0d443975bbe95ffae20fbfddb3ce0c26167fdb3c8b2e388f59067
data/Changelog CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.6.1 (June 9, 2014)
2
+
3
+ * Bug fix - do not process wait time when timestamp doesn't exist
4
+
1
5
  ## 0.6.0 (June 9, 2014)
2
6
 
3
7
  * Add queue wait time
data/README.rdoc CHANGED
@@ -1,5 +1,7 @@
1
1
  = resque-analytics
2
2
 
3
+ {<img src="https://badge.fury.io/rb/resque-analytics.svg" alt="Gem Version" />}[http://badge.fury.io/rb/resque-analytics]
4
+
3
5
  Resque jobs analytics and key performance indicators over time
4
6
 
5
7
  This gem keeps statistics per worker for the last 90 days, to be later shown as over time graphs.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.6.0
1
+ 0.6.1
@@ -17,7 +17,7 @@ module Resque
17
17
  @queue = queue
18
18
  @payload = payload
19
19
  @failure_hooks_ran = false
20
- payload_class.send(:analytics_timestamp, timestamp) if payload_class.respond_to?(:analytics_timestamp)
20
+ payload_class.send(:analytics_timestamp, timestamp) if timestamp && payload_class.respond_to?(:analytics_timestamp)
21
21
  end
22
22
  end
23
23
 
Binary file
@@ -2,11 +2,11 @@
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
3
  # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
- # stub: resque-analytics 0.6.0 ruby lib
5
+ # stub: resque-analytics 0.6.1 ruby lib
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "resque-analytics"
9
- s.version = "0.6.0"
9
+ s.version = "0.6.1"
10
10
 
11
11
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
12
12
  s.authors = ["Nir Tzur"]
@@ -30,6 +30,7 @@ Gem::Specification.new do |s|
30
30
  "lib/resque-analytics/server.rb",
31
31
  "lib/resque-analytics/server/views/analytics.erb",
32
32
  "lib/resque/plugins/analytics.rb",
33
+ "resque-analytics-0.6.0.gem",
33
34
  "resque-analytics.gemspec"
34
35
  ]
35
36
  s.homepage = "http://github.com/nirtzur/resque-analytics"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: resque-analytics
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nir Tzur
@@ -100,6 +100,7 @@ files:
100
100
  - lib/resque-analytics/server.rb
101
101
  - lib/resque-analytics/server/views/analytics.erb
102
102
  - lib/resque/plugins/analytics.rb
103
+ - resque-analytics-0.6.0.gem
103
104
  - resque-analytics.gemspec
104
105
  homepage: http://github.com/nirtzur/resque-analytics
105
106
  licenses: