Sha256: a5977a5393a741807b6d9cf79a4e8a4e08c1ea720de7fa70672cefda0bd65be2
Contents?: true
Size: 515 Bytes
Versions: 2
Compression:
Stored size: 515 Bytes
Contents
# encoding: utf-8 require_relative '../border/unicode' module TTY class Table class Renderer # Unicode representation of table renderer # # @api private class Unicode < Basic # Create Unicode renderer # # @param [Table] table # # @api private def initialize(table, options = {}) super(table, options.merge(border_class: TTY::Table::Border::Unicode)) end end # Unicode 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/unicode.rb |
tty-table-0.8.0 | lib/tty/table/renderer/unicode.rb |