Sha256: 0c788928d3b4557730d2237658b2278e07903cc9cf20972d481bb3ef31c1b53d
Contents?: true
Size: 637 Bytes
Versions: 22
Compression:
Stored size: 637 Bytes
Contents
# frozen_string_literal: true module Vedeu module Cells # Provides the character/escape sequence to draw the top left # border with a custom value, colour and style. # # @api private # class TopLeft < Vedeu::Cells::Corner # @return [String] def as_html '┌' end # @return [Symbol] def type :top_left end private # @macro defaults_method def defaults super.merge!(position: Vedeu::Geometries::Position.new(y, x), value: Vedeu.esc.top_left) end end # TopLeft end # Cells end # Vedeu
Version data entries
22 entries across 22 versions & 1 rubygems