Sha256: 04465a622660d4a635b85a217b963943bd9fdf535e92d0a9ba69b6480ddae7ee
Contents?: true
Size: 477 Bytes
Versions: 4
Compression:
Stored size: 477 Bytes
Contents
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
4 entries across 4 versions & 1 rubygems