Method: Rack::ShowExceptions#h
- Defined in:
- lib/rack/showexceptions.rb
#h(obj) ⇒ Object
:nodoc:
91 92 93 94 95 96 97 98 |
# File 'lib/rack/showexceptions.rb', line 91 def h(obj) # :nodoc: case obj when String Utils.escape_html(obj) else Utils.escape_html(obj.inspect) end end |