Method: ActiveSupport::SafeBuffer#safe_concat

Defined in:
activesupport/lib/active_support/core_ext/string/output_safety.rb

#safe_concat(value) ⇒ Object

Raises:



65
66
67
68
# File 'activesupport/lib/active_support/core_ext/string/output_safety.rb', line 65

def safe_concat(value)
  raise SafeConcatError unless html_safe?
  original_concat(value)
end