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 CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- MjJjMTY3MzJiNDY3OWVlZmQyZTFlMmI4NTM1ZTUyZmVkMjZmN2U3Yw==
4
+ NDlmNGJlYWQ2ODZlY2YzMWZjMzhlZTZmZTI1OWU5ZDE0OGZkNWU0Ng==
5
5
  data.tar.gz: !binary |-
6
- NDRlMmE4ZGZiZTViNjZkMjQ0MGQxMDVjZmMyNzZkZmFkMzE1OWUxYg==
6
+ ZmFiOTA0MWE5MTA5NjMxN2I2NGM4YWI0NjA5NTZiZTc4MDhiODI3OA==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- OTdlZjZjMTZlMGQ4YTEzYWY4OGYwMjkzNzExZDhmNzUzNjg5NDJhZDhjMzc3
10
- MTE4MWRkMTY3NGQ1YTE5Y2UzOTA5ZDdhNjY5NmY2ZWNjYzhjYTAxNmZhYjdl
11
- MThmN2NkZWEzNzg1MmQ0YWQyNWQ4NDMzOTI1NjZjNTQ2OWQ0MzI=
9
+ MDA4ZjYxMjUyYzBiNDI4YTFlZGYwNThiZjE5OTY2MmU4ZmMwZWFhYmQzMWY3
10
+ MzdjYzJjZTY1YTc5MmRjNWUzNzU4MmU3MDg0Zjc2YzI1OTgwZWRmNWUxNWU0
11
+ ZGRmMDU1ZTQxMjE0MGQzMTUxMjE2Y2YxYTY1YTkxZjljOWQxZGY=
12
12
  data.tar.gz: !binary |-
13
- M2M5ZTRjNGFkYmZkMDM3MTRjYzgxNGI0OGRjZjIyY2U5NTgyNmE0ZTJjNjEx
14
- ZjRjMDQyYTUwZTIxZDE2NTg4MWMzYmY5OTkyZmM3Yjk4M2VjMmQ0MmYzMzYy
15
- ZGQzYWI3ODhmMjY4NDNhYzk5ZmRjMzkxYTI0OTIxNDcwZjgwZTQ=
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
- 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
- })
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
@@ -1,3 +1,3 @@
1
1
  module Raven
2
- VERSION = "0.9.0"
2
+ VERSION = "0.9.1"
3
3
  end
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.0
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-22 00:00:00.000000000 Z
12
+ date: 2014-05-24 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: faraday