Sha256: 10da15f62540e06ba360527d79f124bfc0f170f51b2a1e80ccfdc5c8fe629c03

Contents?: true

Size: 555 Bytes

Versions: 8

Compression:

Stored size: 555 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.esc.horizontal)
      end

    end # BottomHorizontal

  end # Cells

end # Vedeu

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
vedeu-0.8.9 lib/vedeu/cells/borders/edges/bottom_horizontal.rb
vedeu-0.8.8 lib/vedeu/cells/borders/edges/bottom_horizontal.rb
vedeu-0.8.7 lib/vedeu/cells/borders/edges/bottom_horizontal.rb
vedeu-0.8.6 lib/vedeu/cells/borders/edges/bottom_horizontal.rb
vedeu-0.8.5 lib/vedeu/cells/borders/edges/bottom_horizontal.rb
vedeu-0.8.4 lib/vedeu/cells/borders/edges/bottom_horizontal.rb
vedeu-0.8.3 lib/vedeu/cells/borders/edges/bottom_horizontal.rb
vedeu-0.8.2 lib/vedeu/cells/borders/bottom_horizontal.rb