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