module Docx::Decoder

Public Class Methods

to_xml(path) click to toggle source
# File lib/docx/decoder.rb, line 7
def self.to_xml(path)
    Zip::File.open(path) do |file|
      @zipfile = file
    end
    @zipfile
end