airbrake-ruby 1.0.1 → 1.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 +4 -4
- data/lib/airbrake-ruby.rb +4 -2
- data/lib/airbrake-ruby/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c3ab998a044375a07a36e730b7f1876fbb98c1dd
|
4
|
+
data.tar.gz: 0efc3b61148d9907a3a1e054a7193a1080348b78
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cae2f77310888cb6f70a1839842f23d3488c3c81baf75f53a5455e32dab313827b589ba70fd40f090803a1ac8cee677090721ebdfed8c46f78dcb3259bb92630
|
7
|
+
data.tar.gz: 9835f816359aeeab2bca4e234fa9c2156e1a37ddcbd6fd1eade10fc10f4f414ec2faf3f5b595abb445ca4f7e9c98f69b3dc9e76759a9f64d19a23998ee136bba
|
data/lib/airbrake-ruby.rb
CHANGED
@@ -286,7 +286,9 @@ module Airbrake
|
|
286
286
|
end
|
287
287
|
end
|
288
288
|
|
289
|
-
# Notify of unhandled exceptions, if there were any.
|
289
|
+
# Notify of unhandled exceptions, if there were any, but ignore SystemExit.
|
290
290
|
at_exit do
|
291
|
-
|
291
|
+
if $ERROR_INFO && $ERROR_INFO.class != SystemExit
|
292
|
+
Airbrake.notify_sync($ERROR_INFO)
|
293
|
+
end
|
292
294
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: airbrake-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Airbrake Technologies, Inc.
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2016-01-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rspec
|
@@ -155,3 +155,4 @@ test_files:
|
|
155
155
|
- spec/notice_spec.rb
|
156
156
|
- spec/config_spec.rb
|
157
157
|
- spec/filter_chain_spec.rb
|
158
|
+
has_rdoc:
|