Sha256: 54c8043659f27bad4ff682156e01a7f4d4f887bc1e221aa4485eb71ccd3ef4eb
Contents?: true
Size: 377 Bytes
Versions: 3
Compression:
Stored size: 377 Bytes
Contents
Dir[File.join(__dir__, 'sepparator/**/*.rb')].each { |f| require f } module Sepparator extend self def start_console(args) Console.start(args) end 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 end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
sepparator-0.0.5 | lib/sepparator.rb |
sepparator-0.0.4 | lib/sepparator.rb |
sepparator-0.0.3 | lib/sepparator.rb |