Module: Terminal::Table::TableHelper

Defined in:
lib/terminal-table/lib/terminal-table/table_helper.rb

Instance Method Summary collapse

Instance Method Details

#table(headings = [], *rows, &block) ⇒ Object



5
6
7
# File 'lib/terminal-table/lib/terminal-table/table_helper.rb', line 5

def table headings = [], *rows, &block
  Terminal::Table.new :headings => headings.to_a, :rows => rows, &block
end