public
Description: Augment is a system for gathering metadata from code and displaying it.
Homepage: http://augment.rubyforge.org
Clone URL: git://github.com/technomancy/augment.git
technomancy (author)
Mon Oct 08 11:18:22 -0700 2007
commit  f34eee8b056c76508247b5e83106d7c28762d244
tree    46ae39518066b576801b4de17448bf9a4c788ce7
augment / Rakefile
100644 18 lines (14 sloc) 0.522 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# -*- ruby -*-
 
require 'rubygems'
require 'hoe'
require './lib/augment.rb'
 
Hoe.new('augment', Augment::VERSION) do |p|
  p.rubyforge_name = 'augment'
  p.author = 'Phil Hagelberg'
  p.email = 'technomancy@gmail.com'
  p.summary = 'Augment is a system for collecting and displaying code metadata.'
  p.description = p.paragraphs_of('README.txt', 2..5).join("\n\n")
  p.url = p.paragraphs_of('README.txt', 0).first.split(/\n/)[1..-1]
  p.changes = p.paragraphs_of('History.txt', 0..1).join("\n\n")
end
 
# vim: syntax=Ruby