Sha256: aba4e25b1e8e08c84dc01284cb5e2c1bab058cbd5f043fdd058a73ff93c3abf9
Contents?: true
Size: 944 Bytes
Versions: 2
Compression:
Stored size: 944 Bytes
Contents
module Vedeu module Renderers # Converts a grid of {Vedeu::Char} objects into a stream of escape sequences # and content. # # @api private class Text # Returns a new instance of Vedeu::Renderers::Text. # # @param options [Hash] # @return [Vedeu::Renderers::Text] def initialize(options = {}) @options = options || {} end # @param output [Array<Array<Vedeu::Char>>] # @return [String] def render(output) Vedeu::Compressor.render(output) end private # Combines the options provided at instantiation with the default values. # # @return [Hash<Symbol => void>] def options defaults.merge!(@options) end # The default values for a new instance of this class. # # @return [Hash<Symbol => void>] def defaults {} end end # Text end # Renderers end # Vedeu
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
vedeu-0.4.52 | lib/vedeu/output/renderers/text.rb |
vedeu-0.4.51 | lib/vedeu/output/renderers/text.rb |