Git Product home page Git Product logo

spreadshoot's Introduction

Spreadshoot

Create Excel (OOXML) spreadsheets with ease, using a simple Ruby DSL.

Installation

Add this line to your application's Gemfile:

gem 'spreadshoot'

And then execute:

$ bundle

Or install it yourself as:

$ gem install spreadshoot

Usage

The simplest example follows:

# require us
require 'spreadshoot'
require 'date'

spreadsheet = Spreadshoot.new do |s|
  s.worksheet('Simple') do |w| # multiple worksheet support
    w.row do |r|
      r.cell Date.today
      r.cell 'foo'
      @foo = r.cell 2 # we will remember this cell so we can use it later in the formula
    end
    w.row do |r|
      r.cell Time.now
      r.cell 'bar', :font => 'Times New Roman' # some formatting is supported, more to come
      @bar = r.cell 3
    end
    w.row # empty row
    w.row(:border => :top, :bold => true) do |r|
      r.cell('total', :align => :center)
      r.cell # empty cell
      r.cell :formula => "#{@foo} + #{@bar}" # yes, we support formulas
    end
  end
end

# save your resulting spreadsheet
spreadsheet.save 'MySpreadsheet.xlsx'

See examples directory for some use cases.

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Added some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

spreadshoot's People

Stargazers

Neven Has avatar Magnus Hörberg avatar Carl Hörberg avatar Mladen Jablanović avatar

Watchers

Mladen Jablanović avatar James Cloos avatar

spreadshoot's Issues

#row should accept array

For simple cases, #row method should receive array parameter, which would make

table.row ['foo', 'bar', 42]

equal to

table.row do |r|
  row.cell 'foo'
  row.cell 'bar'
  row.cell 42
end

worksheet method should not require argument

Right now, worksheet expects an argument, which is the name of the worksheet.

It should not be required, as it should assume some sane defaults (say, Worksheet 1, Worksheet 2 and so on).

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.