Sha256: 1be28c5f5437088407f465efb073d1a5464ad3755ca6b6224ad5c98f6d972e09
Contents?: true
Size: 516 Bytes
Versions: 4
Compression:
Stored size: 516 Bytes
Contents
module OoxmlParser # Class for parsing `m:limLoc` object class NaryLimitLocation < OOXMLDocumentObject # @return [String] value of limit location attr_accessor :value # Parse NaryLimitLocation # @param [Nokogiri::XML:Node] node with NaryLimitLocation # @return [NaryLimitLocation] result of parsing def parse(node) node.attributes.each do |key, value| case key when 'val' @value = value_to_symbol(value) end end self end end end
Version data entries
4 entries across 4 versions & 1 rubygems