File: Rakefile

package info (click to toggle)
ruby-svg-graph 1.0.5-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 684 kB
  • ctags: 177
  • sloc: ruby: 2,939; xml: 453; makefile: 8
file content (19 lines) | stat: -rw-r--r-- 590 bytes parent folder | download | duplicates (3)
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