class ActionView::OutputFlow
Experimental RBS support (using type sampling data from the type_fusion
project).
# sig/action_view/flows.rbs class ActionView::OutputFlow def get: (Symbol key) -> untyped end
:nodoc:
def append(key, value)
def append(key, value) @content[key] << value.to_s end
def get(key)
Experimental RBS support (using type sampling data from the type_fusion
project).
def get: (Symbol key) -> untyped
This signature was generated using 1 sample from 1 application.
def get(key) @content[key] end
def initialize
def initialize @content = Hash.new { |h, k| h[k] = ActiveSupport::SafeBuffer.new } end
def set(key, value)
def set(key, value) @content[key] = ActiveSupport::SafeBuffer.new(value.to_s) end