Sha256: 454531d9dfbff5884d152d4a01796e6a49eeac0c94a8249387d68ba9574bf275
Contents?: true
Size: 1.31 KB
Versions: 4
Compression:
Stored size: 1.31 KB
Contents
module Vedeu # Represents an invisible escape character sequence. # class Escape # @!attribute [r] value # @return [String] attr_reader :value # Returns a new instance of Vedeu::Escape. # # @param attributes [String] # @option attributes position [Vedeu::Position|Array<Fixnum>] # @option attributes value [String] # @return [Vedeu::Escape] def initialize(attributes = {}) @attributes = defaults.merge!(attributes) @attributes.each { |key, value| instance_variable_set("@#{key}", value) } end # @return [NilClass] def null nil end alias_method :background, :null alias_method :colour, :null alias_method :foreground, :null alias_method :style, :null # An object is equal when its values are the same. # # @param other [Vedeu::Views::Char] # @return [Boolean] def eql?(other) self.class == other.class && value == other.value end alias_method :==, :eql? # @return [String] def position Vedeu::Position.coerce(@position) end # @return [String] def to_s "#{position}#{value}" end alias_method :to_str, :to_s private # @return [Hash] def defaults { position: [1, 1], value: '', } end end # Escape end # Vedeu
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
vedeu-0.6.3 | lib/vedeu/models/escape.rb |
vedeu-0.6.2 | lib/vedeu/models/escape.rb |
vedeu-0.6.1 | lib/vedeu/models/escape.rb |
vedeu-0.6.0 | lib/vedeu/models/escape.rb |