class TablePrint::FixedWidthFormatter

def format(value)

def format(value)
  padding = width - length(value.to_s)
  truncate(value) + (padding < 0 ? '' : " " * padding)
end