Class: TTY::Table::Renderer::Unicode Private
- 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
#border_class, #column_aligns, #column_widths, #filter, #indent, #multiline, #operations, #padding, #resize, #table, #width
Instance Method Summary collapse
-
#initialize(table, options = {}) ⇒ Unicode
constructor
private
Create Unicode renderer.
Methods inherited from Basic
#add_operations, #border, #columns_constraints, #indentation, #insert_indent, #render
Methods included from Validatable
#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
15 16 17 |
# File 'lib/tty/table/renderer/unicode.rb', line 15 def initialize(table, = {}) super(table, .merge(border_class: TTY::Table::Border::Unicode)) end |