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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5a03c0feac5ee581e853b64a86f88ea4e4d292bb
4
- data.tar.gz: 21d2997c402ba1de6a415cfd572b732d66248f5e
3
+ metadata.gz: c3ab998a044375a07a36e730b7f1876fbb98c1dd
4
+ data.tar.gz: 0efc3b61148d9907a3a1e054a7193a1080348b78
5
5
  SHA512:
6
- metadata.gz: bf739314018cc942015abc6acf329c9183dd3a5fadab558cfbd5acb1f9f02f6d104fd93b96f3f78b2f240ac2fb01fcb219b50fc6176b779bdeae8018725125b1
7
- data.tar.gz: 65d98d04c54cb7c4e06f7630394d532dc3f1f9baa4899b81ce1989e83c305824610fc7550a589f9ba792ebda52dbf158a2eb92ded6b435906723e9ff752af66c
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
- Airbrake.notify_sync($ERROR_INFO) if $ERROR_INFO
291
+ if $ERROR_INFO && $ERROR_INFO.class != SystemExit
292
+ Airbrake.notify_sync($ERROR_INFO)
293
+ end
292
294
  end
@@ -3,5 +3,5 @@
3
3
  module Airbrake
4
4
  ##
5
5
  # @return [String] the library version
6
- AIRBRAKE_RUBY_VERSION = '1.0.1'.freeze
6
+ AIRBRAKE_RUBY_VERSION = '1.0.2'.freeze
7
7
  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.1
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: 2015-12-22 00:00:00.000000000 Z
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: