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

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

Constant Summary

Constants included from Validatable

Validatable::MIN_CELL_WIDTH

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

Methods inherited from Basic

#add_operations, #border, #columns_constraints, #indentation, #insert_indent, #render

Methods included from Validatable

#assert_matching_widths, #assert_row_sizes, #assert_string_values, #validate_options!

Constructor Details

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

Returns a new instance of Unicode.



8
9
10
# File 'lib/tty/table/renderer/unicode.rb', line 8

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