public
Description: Command-line input parser that doesn't hate you
Homepage:
Clone URL: git://github.com/jcoglan/oyster.git
oyster / Rakefile
100644 12 lines (8 sloc) 0.182 kb
1
2
3
4
5
6
7
8
9
10
11
12
# -*- ruby -*-
 
require 'rubygems'
require 'hoe'
require './lib/oyster.rb'
 
Hoe.spec('oyster') do |p|
  p.developer('James Coglan', 'jcoglan@googlemail.com')
end
 
# vim: syntax=Ruby