class Rack::ShowExceptions

def h(obj) # :nodoc:

:nodoc:
def h(obj)                  # :nodoc:
  case obj
  when String
    Utils.escape_html(obj)
  else
    Utils.escape_html(obj.inspect)
  end
end