# frozen_string_literal: true require 'zip' module Docx module Decoder def self.to_xml(path) Zip::File.open(path) do |file| @zipfile = file end @zipfile end end end