GitHub Sale: sign up for any paid plan this week and pay nothing until January 1, 2009!  [ hide ]

public
Fork of chad/gitjour
Description: Serve git and advertise with bonjour
Homepage: http://rubyforge.org/projects/gitjour
Clone URL: git://github.com/wilson/gitjour.git
gitjour / Rakefile
100644 15 lines (11 sloc) 0.328 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# -*- ruby -*-
 
require 'rubygems'
require 'hoe'
require './lib/gitjour.rb'
 
Hoe.new('gitjour', Gitjour::VERSION) do |p|
  p.extra_deps = ['dnssd']
  p.developer('Chad Fowler', 'chad@chadfowler.com')
  p.developer('Evan Phoenix', 'evan@fallingsnow.net')
  p.developer('Rich Kilmer', 'rich@example.com')
end
 
# vim: syntax=Ruby