summaryrefslogtreecommitdiff
path: root/vendor/bundle/ruby/3.4.0/gems/terminal-table-3.0.2/lib/terminal-table/table_helper.rb
blob: 5a853259c024f326e76f61b4a13a5242c2dff656 (plain)
1
2
3
4
5
6
7
8
9
module Terminal
  class Table
    module TableHelper
      def table headings = [], *rows, &block
        Terminal::Table.new :headings => headings.to_a, :rows => rows, &block
      end
    end
  end
end