Flowdock
method

flush_newline_if_pending

Importance_0
v4.2.7 - Show latest stable - 0 notes - Class: ActionView::Template::Handlers::Erubis
flush_newline_if_pending(src) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# 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
Register or log in to add new notes.