File Manager

Path: /opt/chef/embedded/lib/ruby/gems/2.7.0/gems/tty-table-0.11.0/lib/tty/table/border/

Viewing File: unicode.rb

# frozen_string_literal: true

require_relative '../border'

module TTY
  class Table
    class Border
      # A class that represents a unicode border.
      #
      # @api private
      class Unicode < Border

        def_border do
          top          '─'
          top_mid      '┬'
          top_left     '┌'
          top_right    '┐'
          bottom       '─'
          bottom_mid   '┴'
          bottom_left  '└'
          bottom_right '┘'
          mid          '─'
          mid_mid      '┼'
          mid_left     '├'
          mid_right    '┤'
          left         '│'
          center       '│'
          right        '│'
        end

      end # Unicode
    end # Border
  end # Table
end # TTY