Sha256: 6ddbc3a698c0e1d713006319149473540b224a491c7f0232992e1a310a2a58c7

Contents?: true

Size: 577 Bytes

Versions: 1

Compression:

Stored size: 577 Bytes

Contents

# frozen_string_literal: true

module Vedeu

  module Cells

    # Provides the character/escape sequence to draw one cell of the
    # bottom horizontal border with a custom value, colour and style.
    #
    # @api private
    #
    class BottomHorizontal < Vedeu::Cells::Horizontal

      # @return [Symbol]
      def type
        :bottom_horizontal
      end

      private

      # @return [Hash<Symbol => String>]
      def defaults
        super.merge!(value: Vedeu::EscapeSequences::Borders.horizontal)
      end

    end # BottomHorizontal

  end # Cells

end # Vedeu

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
vedeu-0.8.1 lib/vedeu/cells/borders/bottom_horizontal.rb