Flowdock
method

add_text

Importance_0
v4.2.7 - Show latest stable - 0 notes - Class: ActionView::Template::Handlers::Erubis
add_text(src, text) 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 12
        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
Register or log in to add new notes.