gaffe icon indicating copy to clipboard operation
gaffe copied to clipboard

💥 Gaffe handles Rails error pages in a clean, simple way.

Results 6 gaffe issues
Sort by recently updated
recently updated
newest added

Add contribution guidelines. E.g. requirement to squash commits in PR

In the ErrorController class for the API module, my base class extends from ActionController::API instead of ActionController::Base. Upon starting up rails server, I get the following error (short backtrace): ```...

Instead of: `skip_before_action :authenticate_user!` You should use this line in Rails 5: `skip_before_action :authenticate_user!, raise: false` See this thread for more details https://github.com/plataformatec/devise/issues/4207#issuecomment-234587685

There is major issue with patterns matching logic Current logic does not allow to set priority for controller of path that match two or more different patterns. Hash should be...

While I don't think this is technically a bug, I wanted to document it as an issue and let users/maintainers decide what to do. If a **gaffe** user uses a...

Hi First of all, thank you very much for your excellent Gem!! I appreciate that this is not really an issue with your gem but more of a use case...