Sha256: 515f1256e0594735c9a8c3d3eb0d09f3e6914b0dbfa552bcf75f57d95f57f5ac

Contents?: true

Size: 1.26 KB

Versions: 15

Compression:

Stored size: 1.26 KB

Contents

module Bugsnag::Rails
  module ControllerMethods
    def self.included(base)
      base.extend ClassMethods
    end

    module ClassMethods
      private
      def before_bugsnag_notify(*methods, &block)
        _add_bugsnag_notify_callback(:before_callbacks, *methods, &block)
      end

      def after_bugsnag_notify(*methods, &block)
        _add_bugsnag_notify_callback(:after_callbacks, *methods, &block)
      end

      def _add_bugsnag_notify_callback(callback_key, *methods, &block)
        options = methods.last.is_a?(Hash) ? methods.pop : {}

        before_filter(options) do |controller|
          request_data = Bugsnag.configuration.request_data
          request_data[callback_key] ||= []

          # Set up "method symbol" callbacks
          methods.each do |method_symbol|
            request_data[callback_key] << lambda { |notification|
              controller.send(method_symbol, notification)
            }
          end

          # Set up "block" callbacks
          request_data[callback_key] << lambda { |notification|
            controller.instance_exec(notification, &block)
          } if block_given?
        end
      end
    end

    private
    def notify_bugsnag(exception, custom_data=nil)
      Bugsnag.notify(exception, custom_data)
    end
  end
end

Version data entries

15 entries across 15 versions & 2 rubygems

Version Path
bugsnag-2.8.13 lib/bugsnag/rails/controller_methods.rb
bugsnag-maglev--2.8.12 lib/bugsnag/rails/controller_methods.rb
bugsnag-2.8.12 lib/bugsnag/rails/controller_methods.rb
bugsnag-2.8.11 lib/bugsnag/rails/controller_methods.rb
bugsnag-2.8.10 lib/bugsnag/rails/controller_methods.rb
bugsnag-2.8.9 lib/bugsnag/rails/controller_methods.rb
bugsnag-2.8.8 lib/bugsnag/rails/controller_methods.rb
bugsnag-2.8.7 lib/bugsnag/rails/controller_methods.rb
bugsnag-2.8.6 lib/bugsnag/rails/controller_methods.rb
bugsnag-2.8.5 lib/bugsnag/rails/controller_methods.rb
bugsnag-2.8.4 lib/bugsnag/rails/controller_methods.rb
bugsnag-2.8.3 lib/bugsnag/rails/controller_methods.rb
bugsnag-2.8.2 lib/bugsnag/rails/controller_methods.rb
bugsnag-2.8.1 lib/bugsnag/rails/controller_methods.rb
bugsnag-2.8.0 lib/bugsnag/rails/controller_methods.rb