airbrake 5.8.0.rc.1 → 5.8.0.rc.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: c94622ac3d8e8b69e2c831e01e492b62086c3c03
4
- data.tar.gz: a9260fe62be2e6b89a89f86c470157d09387d5a3
3
+ metadata.gz: 739d297145e474289e0991518823f2a335730af1
4
+ data.tar.gz: e342217370635b59ff72dab485a5ae2190693100
5
5
  SHA512:
6
- metadata.gz: 4e6cee77275b9305799b2f30739deea5cb1bbcc9b07d2b2ea246619ef44c78e3759a305da59703d5a5248f59e404a0d4e8fdf68d173bf32e428ed3618a1f2019
7
- data.tar.gz: 8df44857392362349eb330290b6e5c3e0fd9217afdac866f17ad01800331c023da1d069f1d89d753842ab0165b3c195cf9a24485b4ecf2796e005a59dbd14e00
6
+ metadata.gz: ab4c6612ef1301925779ca3519a85a119d213e5b72f10748f98f144b00547b4e8db8a57babc398238f72096575d05392f8cd14d532cdfad7f0c8068ff405c520
7
+ data.tar.gz: 1bcc18a8234ba41e3d28a19e7cf1071611c21275cf049f843003a018995b0f9e75642b1c7d9f7a22165c3f78286f48aedeaa99604409fb79ba6c65e476742efa
@@ -13,7 +13,7 @@ module Airbrake
13
13
  # Attaches information from the Rack env.
14
14
  # @see Airbrake#notify, #notify_airbrake_sync
15
15
  def notify_airbrake(exception, params = {}, notifier_name = :default)
16
- return unless (notice = build_notice(exception, params, notifier))
16
+ return unless (notice = build_notice(exception, params, notifier_name))
17
17
  Airbrake[notifier_name].notify(notice, params)
18
18
  end
19
19
 
@@ -22,7 +22,7 @@ module Airbrake
22
22
  # Attaches information from the Rack env.
23
23
  # @see Airbrake#notify_sync, #notify_airbrake
24
24
  def notify_airbrake_sync(exception, params = {}, notifier_name = :default)
25
- return unless (notice = build_notice(exception, params, notifier))
25
+ return unless (notice = build_notice(exception, params, notifier_name))
26
26
  Airbrake[notifier_name].notify_sync(notice, params)
27
27
  end
28
28
 
@@ -2,5 +2,5 @@
2
2
  # We use Semantic Versioning v2.0.0
3
3
  # More information: http://semver.org/
4
4
  module Airbrake
5
- AIRBRAKE_VERSION = '5.8.0.rc.1'.freeze
5
+ AIRBRAKE_VERSION = '5.8.0.rc.2'.freeze
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: airbrake
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.8.0.rc.1
4
+ version: 5.8.0.rc.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Airbrake Technologies, Inc.