# File lib/active_support/core_ext/string/output_safety.rb, line 79 def +(other) dup.concat(other) end
# File lib/active_support/core_ext/string/output_safety.rb, line 70 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 87 def html_safe self end
# File lib/active_support/core_ext/string/output_safety.rb, line 83 def html_safe? true end
Generated with the Darkfish Rdoc Generator 2.