class Thor::Shell::Basic

def print_table(array, options = {}) # rubocop:disable Metrics/MethodLength

rubocop:disable Metrics/MethodLength

borders:: Adds ascii borders.
colwidth:: Force the first column to colwidth spaces wide.
indent:: Indent the first column by indent value.
==== Options

Array[Array[String, String, ...]]
==== Parameters

Prints a table.
def print_table(array, options = {}) # rubocop:disable Metrics/MethodLength
  printer = TablePrinter.new(stdout, options)
  printer.print(array)
end