0.0
No commit activity in last 3 years
No release in over 3 years
Rack module that dynamically generates sparkline graphs from a set of numbers.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies
 Project Readme

rack-sparklines¶ ↑

Dynamically generates sparkline graphs from a set of numbers. This is done primarily through Handlers and Cachers. Handlers know how to fetch the data, and Cachers know how to cache the generated PNG sparkline for future requests.

pub_dir   = File.expand_path(File.join(File.dirname(__FILE__), 'public'))
data_dir  = File.join(pub_dir, 'temps')
cache_dir = File.join(pub_dir, 'sparks')

use Rack::Sparklines, :prefix => 'sparks',
  :handler => Rack::Sparklines::Handlers::CsvData.new(data_dir),
  :cacher  => Rack::Sparklines::Cachers::Filesystem.new(cache_dir)
  • An incoming request hits your Rack application at “/sparks/foo/stats.csv”.

  • The CSV Handler gets ‘foo/stats.csv’, and checks for this file in its data directory. It parses the first row of numbers as the set of points to plot.

  • The Filesystem Cacher checks for a more recent cache. Failing that, it generates the PNG graph and writes it to the cache directory.

Mix and match your own handlers and cachers with your friends!

Demo¶ ↑

See demo/sparkline_demo.rb or rack-sparklines.heroku.com/

Codes¶ ↑

gem install rack-sparklines

github.com/technoweenie/rack-sparklines

Copyright © 2009 rick. See LICENSE for details.