# File lib/active_support/core_ext/string/output_safety.rb, line 79 79: def +(other) 80: dup.concat(other) 81: end
# File lib/active_support/core_ext/string/output_safety.rb, line 70 70: def concat(value) 71: if value.html_safe? 72: super(value) 73: else 74: super(ERB::Util.h(value)) 75: end 76: end
# File lib/active_support/core_ext/string/output_safety.rb, line 87 87: def html_safe 88: self 89: end
# File lib/active_support/core_ext/string/output_safety.rb, line 83 83: def html_safe? 84: true 85: end
Disabled; run with --debug to generate this.
Generated with the Darkfish Rdoc Generator 1.1.6.