# File lib/rhc/highline_extensions.rb, line 84
  def table(items, opts={}, &block)
    items = items.map(&block) if block_given?
    opts[:width] ||= default_max_width
    Table.new(items, opts)
  end