Sha256: 64c40926731496758ed374209b9d37f4b149df76c6949d24ba07321963ed15e8
Contents?: true
Size: 1.1 KB
Versions: 2
Compression:
Stored size: 1.1 KB
Contents
# frozen_string_literal: true module OoxmlParser # Class for parsing `u` tags class Underline < OOXMLDocumentObject attr_accessor :style, :color def initialize(style = :none, color = nil, parent: nil) @style = style == 'single' ? :single : style @color = color @parent = parent end # Compare this object to other # @param other [Object] any other object # @return [True, False] result of comparision def ==(other) case other when Underline @style.to_sym == other.style.to_sym && @color == other.color when Symbol @style.to_sym == other else false end end # @return [String] result of convert of object to string def to_s if @color.nil? @style.to_s else "#{@style} #{@color}" end end # Parse Underline object # @param node [Nokogiri::XML:Element] node to parse # @return [Underline] result of parsing def parse(node) case node when 'sng' @style = :single when 'none' @style = :none end self end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ooxml_parser-0.8.1 | lib/ooxml_parser/common_parser/common_data/underline.rb |
ooxml_parser-0.8.0 | lib/ooxml_parser/common_parser/common_data/underline.rb |