# File lib/active_support/core_ext/string/output_safety.rb, line 87 def +(other) dup.concat(other) end
# File lib/active_support/core_ext/string/output_safety.rb, line 78 def concat(value) if value.html_safe? super(value) else super(ERB::Util.h(value)) end end
# File lib/active_support/core_ext/string/output_safety.rb, line 95 def html_safe self end
# File lib/active_support/core_ext/string/output_safety.rb, line 91 def html_safe? true end
Generated with the Darkfish Rdoc Generator 2.