Sha256: 7c7f2e8f85be199de1378ba0ebd2681e0790a4dc8deb7873ea9ace13481a6f48
Contents?: true
Size: 423 Bytes
Versions: 2
Compression:
Stored size: 423 Bytes
Contents
# encoding: utf-8 require_relative '../border/ascii' require_relative '../renderer/basic' module TTY class Table class Renderer class ASCII < Basic # Create ASCII renderer # # @api private def initialize(table, options = {}) super(table, options.merge(border_class: TTY::Table::Border::ASCII)) end end # ASCII end # Renderer end # Table end # TTY
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
tty-table-0.9.0 | lib/tty/table/renderer/ascii.rb |
tty-table-0.8.0 | lib/tty/table/renderer/ascii.rb |