Sha256: 4852d456a7e8743ff75f361e5174a0d0f1406fd690bffd99cab9ec52000a6044

Contents?: true

Size: 206 Bytes

Versions: 7

Compression:

Stored size: 206 Bytes

Contents

require 'text-table'

class CliFormat::Presenter
  class Table < Base
    def text
      table = Text::Table.new
      table.head = @header if @header
      table.rows = @rows
      table
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
cli-format-0.5.0 lib/cli_format/presenter/table.rb
cli-format-0.4.0 lib/cli_format/presenter/table.rb
cli-format-0.3.0 lib/cli_format/presenter/table.rb
cli-format-0.2.2 lib/cli_format/presenter/table.rb
cli-format-0.2.1 lib/cli_format/presenter/table.rb
cli-format-0.2.0 lib/cli_format/presenter/table.rb
cli-format-0.1.0 lib/cli_format/presenter/table.rb