class ActionView::Template::Handlers::ERB::Erubi
Experimental RBS support (using type sampling data from the type_fusion
project).
# sig/action_view/template/handlers/erb/erubi.rbs class ActionView::Template::Handlers::ERB::Erubi < Erubi::Engine def flush_newline_if_pending: (String src) -> untyped end
def add_code(code)
def add_code(code) flush_newline_if_pending(src) super end
def add_expression(indicator, code)
def add_expression(indicator, code) flush_newline_if_pending(src) if (indicator == "==") || @escape src << bufvar << ".safe_expr_append=" else src << bufvar << ".append=" end if BLOCK_EXPR.match?(code) src << " " << code else src << "(" << code << ");" end end
def add_postamble(_)
def add_postamble(_) flush_newline_if_pending(src) super end
def add_text(text)
def add_text(text) return if text.empty? if text == "\n" @newline_pending += 1 else src << bufvar << ".safe_append='" src << "\n" * @newline_pending if @newline_pending > 0 src << text.gsub(/['\\]/, '\\\\\&') src << "'.freeze;" @newline_pending = 0 end end
def evaluate(action_view_erb_handler_context)
def evaluate(action_view_erb_handler_context) src = @src view = Class.new(ActionView::Base) { include action_view_erb_handler_context._routes.url_helpers class_eval("define_method(:_template) { |local_assigns, output_buffer| #{src} }", defined?(@filename) ? @filename : "(erubi)", 0) }.empty view._run(:_template, nil, {}, ActionView::OutputBuffer.new) end
def flush_newline_if_pending(src)
Experimental RBS support (using type sampling data from the type_fusion
project).
def flush_newline_if_pending: (String src) -> untyped
This signature was generated using 1 sample from 1 application.
def flush_newline_if_pending(src) if @newline_pending > 0 src << bufvar << ".safe_append='#{"\n" * @newline_pending}'.freeze;" @newline_pending = 0 end end
def initialize(input, properties = {})
def initialize(input, properties = {}) @newline_pending = 0 # Dup properties so that we don't modify argument properties = Hash[properties] properties[:bufvar] ||= "@output_buffer" properties[:preamble] ||= "" properties[:postamble] ||= "#{properties[:bufvar]}.to_s" properties[:escapefunc] = "" super end