Method: VMC::CLI#table

Defined in:
lib/vmc/cli.rb

#table(headers, rows) ⇒ Object



269
270
271
272
273
# File 'lib/vmc/cli.rb', line 269

def table(headers, rows)
  tabular(
    !quiet? && headers.collect { |h| h && b(h) },
    *rows)
end