dudleyf / xl

A Ruby library for reading and writing Excel .xlsx files

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Xl

A library for reading and writing Excel OOXML files based on openpyxl. It was a quick hack, and I'm not currently using it. I may or may not start working on it again someday. It's likely buggy, possibly unusable, and certainly incomplete. Also it has a stupid name.

Usage

require 'xl'

wb = Xl::Workbook.new
ws = wb.create_sheet
ws.cell('A1').value = 'Hello, World!'
Xl::Xml.save_workbook(wb, 'hello.xlsx')

About

A Ruby library for reading and writing Excel .xlsx files

License:Other


Languages

Language:Ruby 100.0%