method
append_if_string=
rails latest stable - Class:
ActionView::OutputBuffer
append_if_string=(value)public
No documentation available.
# File actionpack/lib/action_view/template/handlers/erb.rb, line 19
def append_if_string=(value)
if value.is_a?(String) && !value.is_a?(NonConcattingString)
ActiveSupport::Deprecation.warn("<% %> style block helpers are deprecated. Please use <%= %>", caller)
self << value
end
end