* VRFS-699 - adding bugsnag to jam-admin

This commit is contained in:
Seth Call 2013-09-22 01:30:37 +00:00
parent 022085c8c8
commit 2b68987dfd
2 changed files with 8 additions and 0 deletions

View File

@ -45,6 +45,7 @@ gem 'country-select'
gem 'aasm', '3.0.16'
gem 'postgres-copy'
gem 'aws-sdk'
gem 'bugsnag'
gem 'eventmachine', '1.0.0'
gem 'amqp', '0.9.8'

View File

@ -0,0 +1,7 @@
Bugsnag.configure do |config|
config.api_key = "7e24985b93dd922a731daca26fc2aa13"
config.use_ssl = false
config.notify_release_stages = ["production"] # add 'development' if you want to test a feature locally
config.auto_notify = true
config.app_version = JamAdmin::VERSION
end