module Haml::Helpers

def puts(*args)

Other tags:
    See: #haml_concat -

Deprecated:
  • This will be removed in version 3.0.
def puts(*args)
  warn <<END
ECATION WARNING:
Haml #puts helper is deprecated and will be removed in version 3.0.
the #haml_concat helper instead.
  haml_concat(*args)
end