FEATURE: airbrake dependency removed, can be added via a plugin if needed

This commit is contained in:
Sam 2014-09-25 10:30:29 +10:00
parent 0f39025f78
commit 5e0623d1e5
2 changed files with 0 additions and 15 deletions

View file

@ -105,7 +105,6 @@ gem 'message_bus'
gem 'rails_multisite', path: 'vendor/gems/rails_multisite'
gem 'redcarpet', require: false
gem 'airbrake', '3.1.2', require: false # errbit is broken with 3.1.3 for now
gem 'eventmachine'
gem 'fast_xs'

View file

@ -1,14 +0,0 @@
# Internally Dicourse uses Errbit for error logging,
# you can to by setting up an instance and amending this file
require 'airbrake'
Airbrake.configure do |config|
config.api_key = 'YOUR API KEY'
config.host = 'errors.example.com'
config.port = 80
config.secure = config.port == 443
# IP Spoof errors can be ignored
config.ignore << "ActionDispatch::RemoteIp::IpSpoofAttackError"
end