method

flush_newline_if_pending

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

Method deprecated or moved

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

flush_newline_if_pending(src)
public

No documentation available.

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