qrush (owner)

Revisions

gist: 221662 Download_button fork
public
Public Clone URL: git://gist.github.com/221662.git
Embed All Files: show embed
Text only #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'rubygems'
require 'sinatra'
 
require 'vendor/gems/environment.rb'
Bundler.require_env "production"
 
get '/' do
  pc = GoogleChart::PieChart.new('320x200', "Pie Chart",false)
  pc.data "Apples", 40
  pc.data "Banana", 20
  pc.data "Peach", 30
  pc.data "Orange", 60
  "<img src='#{pc.to_url}' />"
end
 
run Sinatra::Application