Sha256: 4e9dc7a44f17a5de7238c8732b9d87a373cdf8f005852e15541a43b4d8539f86

Contents?: true

Size: 477 Bytes

Versions: 9

Compression:

Stored size: 477 Bytes

Contents

# encoding: utf-8

module TTY
  class Table
    class Renderer
      # Unicode representation of table renderer
      #
      # @api private
      class Unicode < Basic
        # Create Unicode renderer
        #
        # @param [Table] table
        #
        # @api private
        def initialize(table, options = {})
          super(table, options.merge(border_class: TTY::Table::Border::Unicode))
        end
      end # Unicode
    end # Renderer
  end # Table
end # TTY

Version data entries

9 entries across 9 versions & 2 rubygems

Version Path
tty-table-0.6.0 lib/tty/table/renderer/unicode.rb
tty-table-0.5.0 lib/tty/table/renderer/unicode.rb
tty-table-0.4.0 lib/tty/table/renderer/unicode.rb
tty-table-0.3.0 lib/tty/table/renderer/unicode.rb
tty-table-0.2.0 lib/tty/table/renderer/unicode.rb
tty-table-0.1.0 lib/tty/table/renderer/unicode.rb
tty-0.1.2 lib/tty/table/renderer/unicode.rb
tty-0.1.1 lib/tty/table/renderer/unicode.rb
tty-0.1.0 lib/tty/table/renderer/unicode.rb