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

9 lines
233 B
Ruby

if CFG.airbrake_api_key
Airbrake.configure do |config|
config.api_key = CFG.airbrake_api_key
config.host = CFG.airbrake_host if CFG.airbrake_host
config.port = 80
config.secure = config.port == 443
end
end