method

safe_concat

safe_concat(value)
public

No documentation available.

# File activesupport/lib/active_support/core_ext/string/output_safety.rb, line 107
    def safe_concat(value)
      raise SafeConcatError if dirty?
      original_concat(value)
    end