1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
# -*- ruby -*-
# -*- coding: utf-8 -*-
$:.unshift(File.dirname(__FILE__)+"/lib/")
require 'rubygems'
require 'hoe'
Hoe.plugin :git
$:.unshift("./lib")
require 'svggraph'
Hoe.spec 'svg-graph' do
self.version=SVG::Graph::VERSION
self.developer('Sean Russell', 'ser_AT_germane-software.com')
self.developer('Claudio Bustos', 'clbustos_AT_gmail.com')
self.developer("Liehann Loots","liehhanl_AT_gmail.com")
self.developer("Piergiuliano Bossi","pgbossi_AT_gmail.com")
self.rubyforge_name = 'ruby-statsample' # if different than 'svg_graph'
self.remote_rdoc_dir = 'svg-graph'
end
|