jparker / ruby-googlechart

A ruby interface to the Google Chart API

This URL has Read+Write access

jparker (author)
Sun Nov 23 02:27:07 -0800 2008
commit  381cdeb2c92fd5a5bdc2299965c5957075d95175
tree    587a75692b1bd21c789d293821950cdd30e2fe7c
parent  a4c1c276fd575943bfc86671cec29f522a836a26
ruby-googlechart / script / destroy
100755 15 lines (12 sloc) 0.387 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env ruby
APP_ROOT = File.expand_path(File.join(File.dirname(__FILE__), '..'))
 
begin
  require 'rubigen'
rescue LoadError
  require 'rubygems'
  require 'rubigen'
end
require 'rubigen/scripts/destroy'
 
ARGV.shift if ['--help', '-h'].include?(ARGV[0])
RubiGen::Base.use_component_sources! [:rubygems, :newgem, :newgem_theme, :test_unit]
RubiGen::Scripts::Destroy.new.run(ARGV)