module TimeCrunch

Public Class Methods

process(input_file_path, output_file_path, employee_map: {}) click to toggle source
# File lib/time_crunch.rb, line 9
def self.process(input_file_path, output_file_path, employee_map: {})
  TimeCrunch::Conversion.new(input_file_path, employee_map: employee_map).write_xlsx(output_file_path)
end