method

safe_concat

safe_concat(value)
public

No documentation available.

# File activesupport/lib/active_support/core_ext/string/output_safety.rb, line 168
    def safe_concat(value)
      raise SafeConcatError unless html_safe?
      original_concat(value)
    end