module OfficeConverter

Constants

VERSION

Public Class Methods

convert(source, target_dir, soffice_command = nil, convert_to = nil) click to toggle source

source -> .docx file to be converted target_dir -> directory where file will pe persisted

# File lib/office_converter.rb, line 12
def self.convert(source, target_dir, soffice_command = nil, convert_to = nil)
  Converter.new(source, target_dir, soffice_command, convert_to).convert
end