Skip to content

Commit

Permalink
Merge pull request #193 from alphagov/use_released_airbrake_gem
Browse files Browse the repository at this point in the history
Switch to using released airbrake gem
  • Loading branch information
vinayvinay committed Feb 4, 2014
2 parents 6bba110 + 54c2b7e commit 76a017f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 13 deletions.
3 changes: 1 addition & 2 deletions Gemfile
Expand Up @@ -9,8 +9,7 @@ gem 'aws-ses', require: 'aws/ses'
gem 'jquery-rails'
gem 'exception_notification', '4.0.1'

# Using our branch until https://github.com/airbrake/airbrake/pull/268 is merged
gem 'airbrake', '3.1.15', :git => "https://github.com/alphagov/airbrake", :branch => "disable_unless_configured"
gem 'airbrake', '3.1.15'
gem 'plek', '1.4.0'
gem 'json', '1.7.7'
gem 'whenever', '0.7.3', require: false
Expand Down
14 changes: 4 additions & 10 deletions Gemfile.lock
@@ -1,12 +1,3 @@
GIT
remote: https://github.com/alphagov/airbrake
revision: 49fb7d1a3004970e2830f4e7b5b6b95f1bcb70fc
branch: disable_unless_configured
specs:
airbrake (3.1.15)
builder
multi_json

GIT
remote: https://github.com/alphagov/devise_security_extension.git
revision: 4d14ed4c9ae8f23da0e9d5de2b6b69d9b53cd73d
Expand Down Expand Up @@ -48,6 +39,9 @@ GEM
i18n (~> 0.6, >= 0.6.4)
multi_json (~> 1.0)
addressable (2.3.2)
airbrake (3.1.15)
builder
multi_json
alphabetical_paginate (2.1.0)
ancestry (2.0.0)
activerecord (>= 3.0.0)
Expand Down Expand Up @@ -238,7 +232,7 @@ PLATFORMS
ruby

DEPENDENCIES
airbrake (= 3.1.15)!
airbrake (= 3.1.15)
alphabetical_paginate (= 2.1.0)
ancestry (= 2.0.0)
aws-ses
Expand Down
6 changes: 5 additions & 1 deletion config/initializers/airbrake.rb
@@ -1,3 +1,7 @@
# This file is overwritten on deploy
#
# Nothing to configure in dev
Airbrake.configure do |config|
# Adding production to the development environments causes Airbrake not
# to attempt to send notifications.
config.development_environments << "production"
end

0 comments on commit 76a017f

Please sign in to comment.