Repository is archived
No commit activity in last 3 years
No release in over 3 years
PublicExceptions for multiple mime types
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

 Project Readme

MimeTypedPublicExceptions

PublicExceptions for multiple mime types

Usage

// public/500.json
{
  "status": 500,
  "message": "internal server error"
}
Rails.application.configure do
  config.exceptions_app = MimeTypedPublicExceptions.new(Rails.public_path)
end
app.get '/some_exception', headers: { 'Content-Type' => 'application/json', 'Accept' => 'application/json' }
# => 500
app.response_body
# => "{\n  \"status\": 500,\n  \"message\": \"internal server error\"\n}"

Installation

Add this line to your application's Gemfile:

gem 'mime_typed_public_exceptions'

And then execute:

$ bundle

Or install it yourself as:

$ gem install mime_typed_public_exceptions

Contributing

Contribution directions go here.

License

The gem is available as open source under the terms of the MIT License.