Sha256: 38dcc43979334a59525284c2a7ad55b28b74736b7ab71dea2d352f5a67d7c59d
Contents?: true
Size: 565 Bytes
Versions: 1
Compression:
Stored size: 565 Bytes
Contents
# frozen_string_literal: true module Vedeu module Cells # Provides the character/escape sequence to draw one cell of the # top horizontal border with a custom value, colour and style. # # @api private # class TopHorizontal < Vedeu::Cells::Horizontal # @return [Symbol] def type :top_horizontal end private # @return [Hash<Symbol => String>] def defaults super.merge!(value: Vedeu::EscapeSequences::Borders.horizontal) end end # TopHorizontal end # Cells end # Vedeu
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
vedeu-0.8.1 | lib/vedeu/cells/borders/top_horizontal.rb |