Method: TTY::Table::Field#initialize
- Defined in:
- lib/tty/table/field.rb
permalink #initialize(value) ⇒ Field
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.
Initialize a Field
55 56 57 58 59 60 61 62 |
# File 'lib/tty/table/field.rb', line 55 def initialize(value) @value, = (value) @content = @value.to_s @width = [:width] @alignment = .fetch(:alignment, nil) @colspan = .fetch(:colspan, 1) @rowspan = .fetch(:rowspan, 1) end |