method

add_text

rails latest stable - Class: ActionView::Template::Handlers::ERB::Erubis

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v5.1.7) is shown here.

add_text(src, text)
public

No documentation available.

# File actionview/lib/action_view/template/handlers/erb/erubis.rb, line 15
          def add_text(src, text)
            return if text.empty?

            if text == "\n"
              @newline_pending += 1
            else
              src << "@output_buffer.safe_append='"
              src << "\n" * @newline_pending if @newline_pending > 0
              src << escape_text(text)
              src << "'.freeze;"

              @newline_pending = 0
            end
          end