module Sepparator
Public Instance Methods
csv_to_excel(csv_path, excel_path, col_sep: ';', sheet_name: 'from CSV')
click to toggle source
# File lib/sepparator.rb, line 10 def csv_to_excel(csv_path, excel_path, col_sep: ';', sheet_name: 'from CSV') converter = SpreadsheetConverter.new(col_sep: col_sep) converter.convert(csv_path, excel_path, sheet_name: sheet_name) end
start_console(args)
click to toggle source
# File lib/sepparator.rb, line 6 def start_console(args) Console.start(args) end