friendly_errors

friendly_errors handles rails errors without showing the “Sorry, something went wrong” page.

So far …

Installation

Add gem "friendly_errors" to your Gemfile and run bundle install

Then:

In your ApplicationController, put:

class ApplicationController < ActionController::Base
  include FriendlyErrors
  use_friendly_errors
  ...
end

Project TODOs:

Contributing to friendly_errors

Copyright © 2011 Matt Venables. See LICENSE.txt for further details.