Sha256: 163863a71ccd78affb355e218c4c87451558622233e022543f899c8eb189e2cc
Contents?: true
Size: 1.59 KB
Versions: 12
Compression:
Stored size: 1.59 KB
Contents
require 'airbrake' require 'airbrake/rails/controller_methods' require 'airbrake/rails/action_controller_catcher' require 'airbrake/rails/error_lookup' require 'airbrake/rails/javascript_notifier' module Airbrake module Rails def self.initialize if defined?(ActionController::Base) ActionController::Base.send(:include, Airbrake::Rails::ActionControllerCatcher) ActionController::Base.send(:include, Airbrake::Rails::ErrorLookup) ActionController::Base.send(:include, Airbrake::Rails::ControllerMethods) ActionController::Base.send(:include, Airbrake::Rails::JavascriptNotifier) end rails_logger = if defined?(::Rails.logger) ::Rails.logger elsif defined?(RAILS_DEFAULT_LOGGER) RAILS_DEFAULT_LOGGER end if defined?(::Rails.configuration) && ::Rails.configuration.respond_to?(:middleware) ::Rails.configuration.middleware.insert_after 'ActionController::Failsafe', Airbrake::Rack ::Rails.configuration.middleware.insert_after 'Rack::Lock', Airbrake::UserInformer end Airbrake.configure(true) do |config| config.logger = rails_logger config.environment_name = RAILS_ENV if defined?(RAILS_ENV) config.project_root = RAILS_ROOT if defined?(RAILS_ROOT) config.framework = "Rails: #{::Rails::VERSION::STRING}" if defined?(::Rails::VERSION) end end end end Airbrake::Rails.initialize
Version data entries
12 entries across 12 versions & 1 rubygems