class Cell::ViewModel::OutputBuffer

Public Instance Methods

<<(string) click to toggle source
Calls superclass method
# File lib/cell/view_model.rb, line 143
def <<(string)
  super
end
Also aliased as: safe_append=, append=
append=(string)
Alias for: <<
encoding() click to toggle source
# File lib/cell/view_model.rb, line 139
def encoding
  "UTF-8"
end
safe_append=(string)
Alias for: <<
to_s() click to toggle source
# File lib/cell/view_model.rb, line 149
def to_s # output_buffer is returned at the end of the precompiled template.
  join
end