Flowdock
method

add_text

Importance_0
v3.2.8 - 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 actionpack/lib/action_view/template/handlers/erb.rb, line 13
        def add_text(src, text)
          return if text.empty?
          src << "@output_buffer.safe_concat('" << escape_text(text) << "');"
        end
Register or log in to add new notes.