sentry-raven 0.9.0 → 0.9.1
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 +8 -8
- data/lib/raven/integrations/delayed_job.rb +19 -19
- data/lib/raven/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
NDlmNGJlYWQ2ODZlY2YzMWZjMzhlZTZmZTI1OWU5ZDE0OGZkNWU0Ng==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
ZmFiOTA0MWE5MTA5NjMxN2I2NGM4YWI0NjA5NTZiZTc4MDhiODI3OA==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
MDA4ZjYxMjUyYzBiNDI4YTFlZGYwNThiZjE5OTY2MmU4ZmMwZWFhYmQzMWY3
|
|
10
|
+
MzdjYzJjZTY1YTc5MmRjNWUzNzU4MmU3MDg0Zjc2YzI1OTgwZWRmNWUxNWU0
|
|
11
|
+
ZGRmMDU1ZTQxMjE0MGQzMTUxMjE2Y2YxYTY1YTkxZjljOWQxZGY=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
Zjc2ZTA3YTM0ZmE3ZTRkODFhNGM1YTQ3NTg0MmE3ZmNjOWU5ZTEwZWI2Yzc2
|
|
14
|
+
NGE3ZWU5NDJhZTM1ZmVmYjljNmUzMTk2NGM5ZDc2ZDc0MjUyNTAwNTZlZWY3
|
|
15
|
+
M2EzY2Q2ZTI0ZTg0YTJhZjgyZThlMzg5MGM3ZDhmMDBjZjk5MDI=
|
|
@@ -14,25 +14,25 @@ if defined?(Delayed)
|
|
|
14
14
|
rescue Exception => exception
|
|
15
15
|
# Log error to Sentry
|
|
16
16
|
::Raven.capture_exception(exception,
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
17
|
+
:logger => 'delayed_job',
|
|
18
|
+
:tags => {
|
|
19
|
+
:delayed_job_queue => job.queue
|
|
20
|
+
},
|
|
21
|
+
:extra => {
|
|
22
|
+
:delayed_job => {
|
|
23
|
+
:id => job.id,
|
|
24
|
+
:priority => job.priority,
|
|
25
|
+
:attempts => job.attempts,
|
|
26
|
+
:handler => job.handler,
|
|
27
|
+
:last_error => job.last_error,
|
|
28
|
+
:run_at => job.run_at,
|
|
29
|
+
:locked_at => job.locked_at,
|
|
30
|
+
#failed_at => job.failed_at,
|
|
31
|
+
:locked_by => job.locked_by,
|
|
32
|
+
:queue => job.queue,
|
|
33
|
+
:created_at => job.created_at
|
|
34
|
+
}
|
|
35
|
+
})
|
|
36
36
|
|
|
37
37
|
# Make sure we propagate the failure!
|
|
38
38
|
raise exception
|
data/lib/raven/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sentry-raven
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.9.
|
|
4
|
+
version: 0.9.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Noah Kantrowitz
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2014-05-
|
|
12
|
+
date: 2014-05-24 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: faraday
|