diff options
| author | mo khan <mo@mokhan.ca> | 2014-05-07 22:06:37 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2014-05-07 22:06:37 -0600 |
| commit | 3a2eb3e77ddf8ca0dff126fa076c48d8dda1d02e (patch) | |
| tree | 85d4764a03c8eae7540281b71f4882cd377f0ee2 | |
| parent | 5e2e2dd33e515142cb7a900ddb66a9561f10a9cd (diff) | |
add exception notifier gem.
| -rw-r--r-- | Gemfile | 1 | ||||
| -rw-r--r-- | Gemfile.lock | 4 | ||||
| -rw-r--r-- | config/initializers/airbrake.rb | 3 |
3 files changed, 5 insertions, 3 deletions
@@ -30,6 +30,7 @@ gem 'asset_sync', '~> 1.0.0' gem 'geoip' gem 'fog' gem 'unf' +gem 'exception_notification' group :development do gem 'capistrano' diff --git a/Gemfile.lock b/Gemfile.lock index 36adc0dc..9ceea4bf 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -98,6 +98,9 @@ GEM dotenv-rails (0.11.1) dotenv (= 0.11.1) erubis (2.7.0) + exception_notification (4.0.1) + actionmailer (>= 3.0.4) + activesupport (>= 3.0.4) excon (0.33.0) execjs (2.0.2) factory_girl (4.4.0) @@ -301,6 +304,7 @@ DEPENDENCIES delayed_job_active_record (~> 4.0.0) devise (~> 3.0.0) dotenv-rails + exception_notification factory_girl_rails fakes-rspec ffaker diff --git a/config/initializers/airbrake.rb b/config/initializers/airbrake.rb deleted file mode 100644 index 10694049..00000000 --- a/config/initializers/airbrake.rb +++ /dev/null @@ -1,3 +0,0 @@ -Airbrake.configure do |config| - config.api_key = '1977a9f3f3148e1af8747bcb4f5ecde4' -end |
