Sha256: fa5b27e761184db12e47d4778a71fd39132804f8e9916f912b58cdb0a6562d9b

Contents?: true

Size: 546 Bytes

Versions: 6

Compression:

Stored size: 546 Bytes

Contents

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

6 entries across 6 versions & 1 rubygems

Version Path
vedeu-0.8.0 lib/vedeu/cells/borders/bottom_horizontal.rb
vedeu-0.7.4 lib/vedeu/cells/borders/bottom_horizontal.rb
vedeu-0.7.3 lib/vedeu/cells/borders/bottom_horizontal.rb
vedeu-0.7.2 lib/vedeu/cells/borders/bottom_horizontal.rb
vedeu-0.7.1 lib/vedeu/cells/borders/bottom_horizontal.rb
vedeu-0.7.0 lib/vedeu/cells/borders/bottom_horizontal.rb