method

flush_newline_if_pending

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.

flush_newline_if_pending(src)
public

No documentation available.

# File actionview/lib/action_view/template/handlers/erb/erubis.rb, line 71
          def flush_newline_if_pending(src)
            if @newline_pending > 0
              src << "@output_buffer.safe_append='#{"\n" * @newline_pending}'.freeze;"
              @newline_pending = 0
            end
          end