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