Skip to content

Instantly share code, notes, and snippets.

@pauldub
Created February 5, 2013 17:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pauldub/4715870 to your computer and use it in GitHub Desktop.
Save pauldub/4715870 to your computer and use it in GitHub Desktop.
You can monkey patch the ERB class like this but you will probably get a `warning: already initialized constant`
class ERB
module Util
HTML_ESCAPE = { '&' => '&amp;', '>' => '&gt;', '<' => '&lt;', '"' => '&quot;', "'" => '&#39;' }
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment