Project

excel-esv

0.01
Low commit activity in last 3 years
No release in over a year
Excel parsing and generation with the ease of CSV.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

ESV

Ruby library/gem for Excel parsing and generation with the ease of CSV.

Exporting CSVs because Excel generation is too complex? No more! CSVs can also be difficult to open correctly, e.g. in Excel on Mac.

ESV will read and generate XLS files. There is currently no XLSX support, but Pull Requests are welcome.

By design, ESV only reads and writes simple values like integers, floats, strings and dates/datetimes. When parsing a spreadsheet with formulas, you will get their last value, if known.

Usage

Generate data

require "esv"

data = ESV.generate do |esv|
  esv << [ "Name", "Dogs", "Cats" ]
  esv << [ "Victor", 1, 4 ]
end

File.write("/tmp/test.xls", data)

Generate file

require "esv"

ESV.generate_file("/tmp/test.xls") do |esv|
  esv << [ "Name", "Dogs", "Cats" ]
  esv << [ "Victor", 1, 4 ]
end

Parse data

require "esv"

data = File.read("/tmp/test.xls")
output = ESV.parse(data)
# => [ [ "Name", "Dogs", … ], … ]

This assumes a file with a single worksheet and will raise otherwise.

.parse supports the header_converters: keyword argument, which takes the same arguments as CSV.parse does:

  • a Symbol name for a registered header converter
  • a Proc which takes the value and returns the converted value
  • an Array of Symbol names for registered header converters
require "esv"

data = File.read("/tmp/test.xls")
output = ESV.parse(data, header_converters: :symbol)
# => [ [ :name, :dogs, … ], … ]

Registering a new converter:

ESV::HEADER_CONVERTERS[:upcase] = ->(value) { value.upcase }

Parse file

require "esv"

output = ESV.parse_file("/tmp/test.xls")
# => [ [ "Name", "Dogs", … ], … ]

This assumes a file with a single worksheet and will raise otherwise.

Also supports header_converters:.

Generate in Ruby on Rails

In config/initializers/mime_types.rb:

Mime::Type.register ESV::MIME_TYPE, "xls"

As a model or whatever you prefer:

class MyExcelDocument
  def self.generate(name)
    ESV.generate { |esv| esv << [ "Hello #{name}" ] }
  end
end

Controller:

class MyController < ApplicationController
  include ESV::RailsController  # for send_excel

  def show
    data = MyExcelDocument.generate("Rails")
    send_excel(data)
    # or: send_excel(data, filename: "myfilename.xls")
  end

  def another_example
    respond_to do |format|
      format.html {  }
      format.xls { send_excel() }
    end
  end
end

Installation

Add this line to your application's Gemfile:

gem 'excel-esv'

And then execute:

$ bundle

Or install it yourself as:

$ gem install excel-esv

Credits and license

By Henrik Nyh for Auctionet.com under the MIT license.

Using a lot of code from LivingSocial's Excelinator, also under the MIT license.

This library is a thin wrapper around Spreadsheet which does the heavy lifting.