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

13 lines
367 B
Ruby

13 years ago
Airbrake.configure do |config|
unless CFG.airbrake_api_key.blank?
config.api_key = CFG.airbrake_api_key
config.host = CFG.airbrake_host
config.port = 80
config.secure = config.port == 443
end
envs = ['development', 'bugfix']
envs << Rails.env if CFG.airbrake_api_key.blank?
config.development_environments = envs
13 years ago
end