Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch to using released airbrake gem #193

Merged
merged 1 commit into from Feb 4, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 1 addition & 2 deletions Gemfile
Expand Up @@ -9,8 +9,7 @@ gem 'aws-ses', require: 'aws/ses'
gem 'jquery-rails' gem 'jquery-rails'
gem 'exception_notification', '4.0.1' gem 'exception_notification', '4.0.1'


# Using our branch until https://github.com/airbrake/airbrake/pull/268 is merged gem 'airbrake', '3.1.15'
gem 'airbrake', '3.1.15', :git => "https://github.com/alphagov/airbrake", :branch => "disable_unless_configured"
gem 'plek', '1.4.0' gem 'plek', '1.4.0'
gem 'json', '1.7.7' gem 'json', '1.7.7'
gem 'whenever', '0.7.3', require: false 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 GIT
remote: https://github.com/alphagov/devise_security_extension.git remote: https://github.com/alphagov/devise_security_extension.git
revision: 4d14ed4c9ae8f23da0e9d5de2b6b69d9b53cd73d revision: 4d14ed4c9ae8f23da0e9d5de2b6b69d9b53cd73d
Expand Down Expand Up @@ -48,6 +39,9 @@ GEM
i18n (~> 0.6, >= 0.6.4) i18n (~> 0.6, >= 0.6.4)
multi_json (~> 1.0) multi_json (~> 1.0)
addressable (2.3.2) addressable (2.3.2)
airbrake (3.1.15)
builder
multi_json
alphabetical_paginate (2.1.0) alphabetical_paginate (2.1.0)
ancestry (2.0.0) ancestry (2.0.0)
activerecord (>= 3.0.0) activerecord (>= 3.0.0)
Expand Down Expand Up @@ -238,7 +232,7 @@ PLATFORMS
ruby ruby


DEPENDENCIES DEPENDENCIES
airbrake (= 3.1.15)! airbrake (= 3.1.15)
alphabetical_paginate (= 2.1.0) alphabetical_paginate (= 2.1.0)
ancestry (= 2.0.0) ancestry (= 2.0.0)
aws-ses aws-ses
Expand Down
6 changes: 5 additions & 1 deletion config/initializers/airbrake.rb
@@ -1,3 +1,7 @@
# This file is overwritten on deploy # 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