Skip to content

Instantly share code, notes, and snippets.

@igkuz
Last active December 18, 2015 11:39
Show Gist options
  • Select an option

  • Save igkuz/5777100 to your computer and use it in GitHub Desktop.

Select an option

Save igkuz/5777100 to your computer and use it in GitHub Desktop.
class ErrorsController < ApplicationController
respond_to :json, :html
def not_found
# some code here
end
def internal_error
respond_with(...)
end
def unprocessable_entity
# some code here
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment