public
Description: Extensible command-line tool for ninjas, pirates & pandas.
Homepage:
Clone URL: git://github.com/sbraford/go.git
shanti (author)
Sun Oct 05 22:56:38 -0700 2008
commit  c2c1d625fd73d826b3a1eedfed6355efa5ed169a
tree    9aa27880ef3c013933e91eeb84ff063898aa0774
parent  4bd300c26fbc7c46b1fab851c60b9264a0739d10
go / Rakefile
100644 17 lines (13 sloc) 0.456 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# -*- ruby -*-
 
require 'rubygems'
require 'hoe'
require './lib/go.rb'
 
Hoe.new('go', Go::VERSION) do |p|
  # p.rubyforge_name = 'gox' # if different than lowercase project name
  p.summary = 'Extensible command-line tool for ninjas, pirates & pandas'
  p.url = 'http://github.com/sbraford/go/tree'
  p.developer('Shanti A. Braford', 'shantibraford@gmail.com')
  p.remote_rdoc_dir = ''
  p.extra_deps << ['cooloptions', '>= 1.1.1']
end
 
# vim: syntax=Ruby