bugsnag 1.2.0 → 1.2.1
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.
- data/VERSION +1 -1
- data/bugsnag.gemspec +1 -1
- data/lib/bugsnag/rails/controller_methods.rb +2 -2
- metadata +3 -3
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.2.
|
1
|
+
1.2.1
|
data/bugsnag.gemspec
CHANGED
@@ -7,11 +7,11 @@ module Bugsnag::Rails
|
|
7
7
|
module ClassMethods
|
8
8
|
private
|
9
9
|
def before_bugsnag_notify(*methods, &block)
|
10
|
-
_add_bugsnag_notify_callback(:
|
10
|
+
_add_bugsnag_notify_callback(:before_callbacks, *methods, &block)
|
11
11
|
end
|
12
12
|
|
13
13
|
def after_bugsnag_notify(*methods, &block)
|
14
|
-
_add_bugsnag_notify_callback(:
|
14
|
+
_add_bugsnag_notify_callback(:after_callbacks, *methods, &block)
|
15
15
|
end
|
16
16
|
|
17
17
|
def _add_bugsnag_notify_callback(callback_key, *methods, &block)
|
metadata
CHANGED