emacs frontend tests
[augment.git] / Rakefile
blob6747d02df6e18a6e62b28f01458fc37e5982793e
1 # -*- ruby -*-
3 require 'rubygems'
4 require 'hoe'
5 require './lib/augment.rb'
7 Hoe.new('augment', Augment::VERSION) do |p|
8   p.rubyforge_name = 'augment'
9   p.author = 'Phil Hagelberg'
10   p.email = 'technomancy@gmail.com'
11   p.summary = 'Augment is a system for collecting and displaying code metadata.'
12   p.description = p.paragraphs_of('README.txt', 2..5).join("\n\n")
13   p.url = p.paragraphs_of('README.txt', 0).first.split(/\n/)[1..-1]
14   p.changes = p.paragraphs_of('History.txt', 0..1).join("\n\n")
15   p.extra_deps << ['miniunit', '>= 1.0.1']
16   p.extra_deps << ['json', '>= 1.1.1']
17 end
19 task :publish_html do
20   system("scp -r html/* technomancy@rubyforge.org:/var/www/gforge-projects/augment/")
21 end
23 # vim: syntax=Ruby