[Exception_notification For RAILS3 ] git://github.com/rails/exception_notification.git (at master) is not checked out. Please run `bundle install` (Bundler::GitError) [RESOLVED]
# Add to Gemfile
gem 'exception_notification', :git => "http://github.com/rails/exception_notification.git", :require => 'exception_notifier'
# Add following to config/application.rb or config/initializers/exception_notification.rb
bash-3.2# cat config/initializers/exception_notification.rb
puts "======Excpetion Notification LOADED"
application3::Application.config.middleware.use ExceptionNotifier,
:email_prefix => "Staging Capture ERROR: ",
:sender_address => '"Notifier"',
:exception_recipients => ['shrikant.lokhande@gmail.com']
After "git pull" run "bundle install"
if got this Error do:
"bundle install vendor/bundler"
It will Fetch all the gems to bundler, error will go.
Fixed.
# Add to Gemfile
gem 'exception_notification', :git => "http://github.com/rails/exception_notification.git", :require => 'exception_notifier'
# Add following to config/application.rb or config/initializers/exception_notification.rb
bash-3.2# cat config/initializers/exception_notification.rb
puts "======Excpetion Notification LOADED"
application3::Application.config.middleware.use ExceptionNotifier,
:email_prefix => "Staging Capture ERROR: ",
:sender_address => '"Notifier"
:exception_recipients => ['shrikant.lokhande@gmail.com']
After "git pull" run "bundle install"
if got this Error do:
"bundle install vendor/bundler"
It will Fetch all the gems to bundler, error will go.
Fixed.