public
Description: Extensible command-line tool for ninjas, pirates & pandas.
Homepage:
Clone URL: git://github.com/sbraford/go.git
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