Еще ошибки связанные с тем что постучались куда то не туда ловятся в application_controller.rb, вот так
rescue_from ActiveRecord::RecordNotFound, :with => :error_not_found
rescue_from AbstractController::ActionNotFound, :with => :error_not_found
rescue_from ActionView::MissingTemplate, :with => :error_not_found
rescue_from ActiveRecord::RecordNotFound, :with => :error_not_found
rescue_from AbstractController::ActionNotFound, :with => :error_not_found
rescue_from ActionView::MissingTemplate, :with => :error_not_found
def error_not_found
render :status => 404, :template => 'errors/not_found', :layout => 'errors'
end