class TTY::Table::Border::RowLine
A class for a table row line chars manipulation
Public Instance Methods
colorize(border, style)
click to toggle source
@api public
# File lib/tty/table/border/row_line.rb, line 11 def colorize(border, style) self.right = border.set_color(style, right) self.center = border.set_color(style, center) self.left = border.set_color(style, left) end