what to paste in application controller when cucumber doesn't tell you what failed in the view
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class ApplicationController < ActionController::Base | |
rescue_from 'Exception' do |exception| | |
logger.info exception | |
logger.info exception.backtrace.join("\n") | |
render :head => 500 | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment