Class: TTY::Table::Renderer::Unicode Private

Inherits:
Basic
  • Object
show all
Defined in:
lib/tty/table/renderer/unicode.rb

Overview

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Unicode representation of table renderer

Instance Attribute Summary

Attributes inherited from Basic

#alignments, #border_class, #column_widths, #filter, #indent, #multiline, #padding, #resize, #width

Instance Method Summary collapse

Methods inherited from Basic

#border, #create_operations, #render, #select_operations

Methods included from Validatable

#assert_row_size, #assert_row_sizes, #assert_table_type, #validate_options!

Constructor Details

#initialize(table, options = {}) ⇒ Unicode

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Create Unicode renderer

Parameters:



17
18
19
# File 'lib/tty/table/renderer/unicode.rb', line 17

def initialize(table, options = {})
  super(table, options.merge(border_class: TTY::Table::Border::Unicode))
end