An open API service indexing awesome lists of open source software.

https://github.com/if1live/csv-xlsx-converter

Convert CSV to Excel xlsx, Excel xlsx to CSV.
https://github.com/if1live/csv-xlsx-converter

Last synced: 2 months ago
JSON representation

Convert CSV to Excel xlsx, Excel xlsx to CSV.

Awesome Lists containing this project

README

        

= csv-xlsx-converter
{Gem Version}[https://rubygems.org/gems/csv-xlsx-converter]
{Build Status}[https://travis-ci.org/if1live/csv-xlsx-converter]

== To Install:
gem install csv-xlsx-converter

== Usage
Command line script get one or two arguments.

1. First argument : Input filename (Required)
2. Second argument : Output filename (Optional)

If second argment is not predefined, use first filename as excel xlsx filename.
For example, input filename is foo.csv then output filename is foo.xlsx.

=== CSV to Excel xlsx:
csv_to_xlsx input.csv
csv_to_xlsx input.csv output.xlsx

=== Excel xlsx to CSV:
csv_to_xlsx input.xlsx
csv_to_xlsx input.xlsx output.csv

== Development
# prepare repository
git clone https://github.com/if1live/csv-xlsx-converter.git
cd csv-xlsx-converter

# install dependencies
bundle install

# run test case
rake spec

== Copyright

Copyright (c) 2015 if1live. See LICENSE.txt for
further details.