Sha256: da1533eb15a650317a38606e9c05cd1838c4f490040f464696c3e6af6ffc624e
Contents?: true
Size: 1.75 KB
Versions: 1
Compression:
Stored size: 1.75 KB
Contents
module OpenXml module Docx REL_DOCUMENT = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument".freeze REL_STYLES = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles".freeze REL_SETTINGS = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/settings".freeze REL_HEADER = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/header".freeze REL_FOOTER = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/footer".freeze REL_FONT_TABLE = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/fontTable".freeze REL_FONT = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/font".freeze TYPE_STYLES = "application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml".freeze TYPE_SETTINGS = "application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml".freeze TYPE_HEADER = "application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml".freeze TYPE_FOOTER = "application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml".freeze TYPE_FONT_TABLE = "application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml".freeze TYPE_XML = "application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml".freeze TYPE_OBSCURED_FONT = "application/vnd.openxmlformats-officedocument.obfuscatedFont".freeze end end require "openxml/docx/attribute_builder" require "openxml/docx/property_builder" require "openxml/docx/properties" require "openxml/docx/root_namespaces" require "openxml/docx/elements" require "openxml/docx/package" require "openxml/docx/parts" require "openxml/docx/section" require "openxml/docx/style"
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
openxml-docx-0.10.0 | lib/openxml/docx.rb |