bugsnag 1.8.1 → 1.8.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: 5d0e0cddfbae24391d9d2d0835b222e230820baf
4
- data.tar.gz: 3b7e5bfc4e2ff432d1c97e609ca075ed526eb7db
3
+ metadata.gz: 1f7eed0b758aaa511f1d544a202e66dcb8dc7e7f
4
+ data.tar.gz: 2efda049ad5f1bdfad85b8a7fa2d9876ca81c924
5
5
  SHA512:
6
- metadata.gz: 904eda0c1430402a8bf0fac602787c4c715a8ba627985dc32212b347d24a01e5dddd9e84970aa0c4e2a14de2d705cbfe2f6ea60139dad146ab7e0ddaf016f424
7
- data.tar.gz: 26bbfeb529892e4836b7e51f2fd13dab305623014c41daade891f951df9ebcc7f80ea9eaffccc330d036790c538cecd43a3260c776bec0e9111bd154383f0a4b
6
+ metadata.gz: 63b87cf63e4a962091f1a1f9149f8fbd6d33b1676e35a8d28412005155496ec0173d30fd57eb0caecc270ea015f0fdd757bfd52bf2549a91be044146589780c0
7
+ data.tar.gz: 50eaaf00325d80d5cb19d5a168805d63588ab21366b569962f69e149a1c46a01f31e9bdecdb758750fe54f2f69e6f5e4db41866c05ec7001c66bee82b239ff4c
@@ -1,12 +1,18 @@
1
1
  language: ruby
2
2
 
3
3
  rvm:
4
+ - 2.1.0
4
5
  - 2.0.0
5
6
  - 1.9.3
6
7
  - jruby-18mode
7
8
  - jruby-19mode
8
9
  - 1.8.7
9
10
 
11
+ # Workaround for broken bundler on travis CI - https://github.com/bundler/bundler/issues/2784
12
+ before_install:
13
+ - gem update --system 2.1.11
14
+ - gem --version
15
+
10
16
  notifications:
11
17
  hipchat:
12
18
  secure: "OLw2B1ggBDSeyJYgnZ2Ezf2fXbu5BHWSNFEJF38+TB4hYv+Wp3rElROhnyP6IttftLYz68Q8n9SjEUXTX9zXwTNt2fGBHIDwLnjt1uw7BrIOIHCUheOJdPheV2XxdJv9yem5MQ0vF+y33auLpyrA53b+nCbI5UsCXKISLe+C8ME="
@@ -1,6 +1,10 @@
1
1
  Changelog
2
2
  =========
3
3
 
4
+ 1.8.2
5
+ -----
6
+ - Notify all exceptions in mailman and sidekiq
7
+
4
8
  1.8.1
5
9
  -----
6
10
  - Fix Rails2 middleware issue that stopped automatic metadata collection
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.8.1
1
+ 1.8.2
@@ -18,7 +18,13 @@ Gem::Specification.new do |s|
18
18
  s.require_paths = ["lib"]
19
19
 
20
20
  s.add_runtime_dependency 'multi_json', ["~> 1.0"]
21
- s.add_runtime_dependency 'httparty', ["< 1.0", ">= 0.6"]
21
+
22
+ if RUBY_VERSION < "1.9"
23
+ # Use ruby 1.8 compatible httparty
24
+ s.add_runtime_dependency 'httparty', ["< 0.12.0", ">= 0.6"]
25
+ else
26
+ s.add_runtime_dependency 'httparty', ["< 1.0", ">= 0.6"]
27
+ end
22
28
 
23
29
  s.add_development_dependency 'rspec'
24
30
  s.add_development_dependency 'rdoc'
@@ -9,7 +9,8 @@ module Bugsnag
9
9
  }
10
10
 
11
11
  yield
12
- rescue => ex
12
+ rescue Exception => ex
13
+ raise ex if [Interrupt, SystemExit, SignalException].include? ex.class
13
14
  Bugsnag.auto_notify(ex)
14
15
  raise
15
16
  ensure
@@ -10,7 +10,8 @@ module Bugsnag
10
10
  }
11
11
 
12
12
  yield
13
- rescue => ex
13
+ rescue Exception => ex
14
+ raise ex if [Interrupt, SystemExit, SignalException].include? ex.class
14
15
  Bugsnag.auto_notify(ex)
15
16
  raise
16
17
  ensure
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bugsnag
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.8.1
4
+ version: 1.8.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Smith
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-01-07 00:00:00.000000000 Z
11
+ date: 2014-01-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: multi_json