File tree Expand file tree Collapse file tree 4 files changed +13
-14
lines changed Expand file tree Collapse file tree 4 files changed +13
-14
lines changed Original file line number Diff line number Diff line change @@ -184,7 +184,7 @@ group :test do
184
184
gem 'stripe-ruby-mock' , git : 'https://github.com/rebelidealist/stripe-ruby-mock' , branch : 'live-tests'
185
185
end
186
186
187
- gem 'airbrake '
187
+ gem 'bugsnag '
188
188
group :production do
189
189
gem 'newrelic_rpm'
190
190
gem 'puma'
Original file line number Diff line number Diff line change 86
86
acts_as_commentable (2.0.1 )
87
87
acts_as_follower (0.1.1 )
88
88
addressable (2.3.6 )
89
- airbrake (4.1.0 )
90
- builder
91
- multi_json
92
89
annotate (2.6.5 )
93
90
activerecord (>= 2.3.0 )
94
91
rake (>= 0.8.7 )
120
117
debug_inspector (>= 0.0.1 )
121
118
blankslate (3.1.3 )
122
119
buftok (0.2.0 )
120
+ bugsnag (2.7.1 )
121
+ multi_json (~> 1.0 )
123
122
builder (3.0.4 )
124
123
byebug (2.7.0 )
125
124
columnize (~> 0.3 )
@@ -737,13 +736,13 @@ DEPENDENCIES
737
736
acts-as-taggable-on (~> 3.4 )
738
737
acts_as_commentable (= 2.0.1 )
739
738
acts_as_follower (= 0.1.1 )
740
- airbrake
741
739
annotate
742
740
autoprefixer-rails
743
741
awesome_print
744
742
backbone-on-rails
745
743
better_errors
746
744
binding_of_caller
745
+ bugsnag
747
746
capybara
748
747
capybara-screenshot
749
748
carrierwave
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ if defined? ( Bugsnag )
2
+ Bugsnag . configure do |config |
3
+ config . api_key = ENV [ 'BUGSNAG_API_KEY' ]
4
+ end
5
+ else
6
+ unless Rails . env . test? || Rails . env . development?
7
+ Rails . logger . warn '[WTF WARNING] Someone deleted bugsnag and forgot the initializer'
8
+ end
9
+ end
You can’t perform that action at this time.
0 commit comments