Sha256: 2f1a6ff68c73433f8133a9598c145848da961489a57911cc5e9ec4bf99ec7249
Contents?: true
Size: 520 Bytes
Versions: 1
Compression:
Stored size: 520 Bytes
Contents
# ooxml_parser _ooxml_parser_ is a Ooxml files (docx, xlsx, pptx) parser written in Ruby. ## Installation $ gem install ooxml_parser ## Usage Parse a docx file require 'ooxml_parser' docx = OoxmlParser::Parser.parse('spec/document/document_properties/page_count.docx') p docx.document_properties.pages # 2 ## Configuration ### Accuracy Accuracy of digits in fraction part Default is 2 digits in fraction part OoxmlParser.configure do |config| config.accuracy = 3 end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ooxml_parser-0.2.0 | README.md |