class PryMoves::Painter::Canvas

Public Instance Methods

<<(text) click to toggle source
Calls superclass method
# File lib/pry-moves/painter.rb, line 5
def <<(text)
  if length > 2000
    super("... (cut)")
    throw :cut
  end
  super
end