class TTY::Table::Renderer::ASCII

Public Class Methods

new(table, options = {}) click to toggle source

Create ASCII renderer

@api private

Calls superclass method
# File lib/tty/table/renderer/ascii.rb, line 13
def initialize(table, options = {})
  super(table, options.merge(border_class: TTY::Table::Border::ASCII))
end