Class Haml::Buffer
In: lib/haml/template/plugin.rb
Parent: Object

Methods

Public Instance methods

[Source]

    # File lib/haml/template/plugin.rb, line 60
60:       def append_if_string=(value)
61:         if value.is_a?(String) && !value.is_a?(ActionView::NonConcattingString)
62:           ActiveSupport::Deprecation.warn("- style block helpers are deprecated. Please use =", caller)
63:           buffer << value
64:         end
65:       end

[Validate]