Sha256: 2bd428f55b5161f26117642dc35e76daccb3a51c63a3fc1fcd1460367e14c09b
Contents?: true
Size: 255 Bytes
Versions: 12
Compression:
Stored size: 255 Bytes
Contents
module Coprl::Presenters::WebClient::Helpers module HtmlSafe def html_safe(string) # This is for rails ... it requires that html safe strings be marked as safe string.respond_to?(:html_safe) ? string.html_safe : string end end end
Version data entries
12 entries across 12 versions & 1 rubygems