Add errbit integration
This commit is contained in:
parent
b66a06f139
commit
83f4cfecef
3 changed files with 13 additions and 0 deletions
3
Gemfile
3
Gemfile
|
@ -84,3 +84,6 @@ end
|
||||||
gem 'high_voltage', '~> 2.4.0'
|
gem 'high_voltage', '~> 2.4.0'
|
||||||
|
|
||||||
gem 'simple_form'
|
gem 'simple_form'
|
||||||
|
|
||||||
|
# Errors on errbit
|
||||||
|
gem 'airbrake'
|
||||||
|
|
|
@ -36,6 +36,9 @@ GEM
|
||||||
minitest (~> 5.1)
|
minitest (~> 5.1)
|
||||||
thread_safe (~> 0.3, >= 0.3.4)
|
thread_safe (~> 0.3, >= 0.3.4)
|
||||||
tzinfo (~> 1.1)
|
tzinfo (~> 1.1)
|
||||||
|
airbrake (4.3.1)
|
||||||
|
builder
|
||||||
|
multi_json
|
||||||
ajax-datatables-rails (0.3.1)
|
ajax-datatables-rails (0.3.1)
|
||||||
railties (>= 3.1)
|
railties (>= 3.1)
|
||||||
annotate (2.6.10)
|
annotate (2.6.10)
|
||||||
|
@ -254,6 +257,7 @@ PLATFORMS
|
||||||
ruby
|
ruby
|
||||||
|
|
||||||
DEPENDENCIES
|
DEPENDENCIES
|
||||||
|
airbrake
|
||||||
ajax-datatables-rails
|
ajax-datatables-rails
|
||||||
annotate
|
annotate
|
||||||
byebug
|
byebug
|
||||||
|
|
6
config/initializers/errbit.rb
Normal file
6
config/initializers/errbit.rb
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
Airbrake.configure do |config|
|
||||||
|
config.api_key = '066f6146dde14038b5ab69a2f680cd4a'
|
||||||
|
config.host = 'zeus-errbit.ilion.me'
|
||||||
|
config.port = 80
|
||||||
|
config.secure = config.port == 443
|
||||||
|
end
|
Loading…
Reference in a new issue