public
Description: A ruby interface to the Google Chart API
Homepage:
Clone URL: git://github.com/jparker/ruby-googlechart.git
ruby-googlechart / Rakefile
100644 15 lines (12 sloc) 0.483 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'rubygems'
require 'rake'
require 'echoe'
 
Echoe.new('ruby-googlechart', '0.6.3') do |p|
  p.description = 'Ruby wrapper around the Google Charts API'
  p.url = 'http://github.com/jparker/ruby-googlechart'
  p.author = 'John Parker'
  p.email = 'jparker@urgetopunt.com'
  p.ignore_pattern = %w[tmp/* script/*]
  # p.development_dependencies = []
end
 
Dir["#{File.dirname(__FILE__)}/tasks/*.rake"].sort.each {|ext| load ext }