File: erb.rb

package info (click to toggle)
ruby-escape-utils 1.0.1-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 348 kB
  • ctags: 248
  • sloc: ansic: 1,718; ruby: 924; makefile: 2
file content (10 lines) | stat: -rw-r--r-- 187 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
class ERB
  module Util
    include ::EscapeUtils::HtmlSafety

    alias html_escape _escape_html
    alias h html_escape
    module_function :h
    module_function :html_escape
  end
end