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 +4 -4
- data/lib/airbrake/rails/action_controller.rb +2 -2
- data/lib/airbrake/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 739d297145e474289e0991518823f2a335730af1
|
|
4
|
+
data.tar.gz: e342217370635b59ff72dab485a5ae2190693100
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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,
|
|
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,
|
|
25
|
+
return unless (notice = build_notice(exception, params, notifier_name))
|
|
26
26
|
Airbrake[notifier_name].notify_sync(notice, params)
|
|
27
27
|
end
|
|
28
28
|
|
data/lib/airbrake/version.rb
CHANGED