No commit activity in last 3 years
No release in over 3 years
Rails custom error pages engine.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Development

Runtime

>= 4.2
 Project Readme

rails_custom_error_pages Build Status

Rails engine for custom error pages with bootstrap.

screenshot

Installation

Add this line to your application's Gemfile:

gem 'rails_custom_error_pages', '~> 1.0.0'
gem 'bootstrap-sass', '~> 3.3.6'

And then execute:

$ bundle 

Or install it yourself as:

gem install rails_custom_error_pages

Remove rails default error pages from public directory:

rm public/404.html
rm public/422.html
rm public/500.html

Customize

To customize locale:

en:
  rails_custom_error_pages:
    errors:
      show:
        title: Error %{status_code}
        '404':
          description: The page you were looking for doesn't exist.
        '422':
          description: The change you wanted was rejected.
        '500':
          description: We're sorry, but something went wrong.

To customize template, run generator:

rails g rails_custom_error_pages:views

This will copy error template to your application views as:

app/views/rails_custom_error_pages/errors/show.html.erb

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

License

Released under the MIT License.