Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

table_fu

Package Overview
Dependencies
Maintainers
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

table_fu

  • 0.3.4
  • Rubygems
  • Socket score

Version published
Maintainers
2
Created
Source

TableFu

TableFu turns a matric array(from a csv file for example) into a spreadsheet.

Allows formatting, macros, sorting, and faceting.

Documentation: http://propublica.github.com/table-fu

Installation: gem install table-fu

Usage

csv =<<-CSV
Project,Cost,Date,URL
Build Supercollider,500_000_000.50,09/15/2009,http://project.com
Harness Power of Fusion,25_000_000,09/16/2009,http://project2.com
Motorized Bar Stool,45.00,09/17/2009,http://project3.com
CSV

@spreadsheet = TableFu.new(csv) do |s|
  s.formatting = {'Cost' => 'currency',
                  'Link' => {'method'=> 'link', 'arguments' => ['Project', 'URL']}}
  s.sorted_by = {'Project' => {'order' => 'descending'}}
  s.columns = ['Date', 'Project', 'Cost', 'Link']
end 

@spreadsheet.rows[0].column_for('Cost').to_s #=> '$45.00'

@spreadsheet.rows[0].columns[1].to_s #=> 'Motorized Bar Stool'

@spreadsheet.rows[0].column_for('Link').to_s 
#=> "<a href='http://project.com' title='Build Supercollider'>Build Supercollider</a>"

FAQs

Package last updated on 19 Feb 2011

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc