Sha256: e9477807bcfe4fe98786a2c75fc8117e0f6249c664ec19d2bbec7f2377349190
Contents?: true
Size: 508 Bytes
Versions: 49
Compression:
Stored size: 508 Bytes
Contents
# frozen_string_literal: true module OoxmlParser # Class for storing Level Text, `lvlText` tag class LevelText < OOXMLDocumentObject # @return [String] value of start attr_accessor :value # Parse LevelText # @param [Nokogiri::XML:Node] node with LevelText # @return [LevelText] result of parsing def parse(node) node.attributes.each do |key, value| case key when 'val' @value = value.value.to_s end end self end end end
Version data entries
49 entries across 49 versions & 1 rubygems