You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
asciinema.org/config/initializers/errbit.rb

14 lines
340 B
Ruby

if CFG['AIRBRAKE_API_KEY']
require 'airbrake'
Airbrake.configure do |config|
config.api_key = CFG['AIRBRAKE_API_KEY']
config.host = CFG['AIRBRAKE_HOST']
config.port = 80
config.secure = config.port == 443
envs = ['development', 'bugfix']
config.development_environments = envs
end
end