summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorRyan Davis <ryand@zenspider.com>2006-12-14 22:50:42 -0800
committerRyan Davis <ryand@zenspider.com>2006-12-14 22:50:42 -0800
commite11f09a200428025d0be241f9ebe823a62ceb98c (patch)
treeb84802e7e5c60acd8c30970df5a66d35824efcbe /Rakefile
downloadhoe-e11f09a200428025d0be241f9ebe823a62ceb98c.tar.gz
Pulled flat history from subversion.
[git-p4: depot-paths = "//src/hoe/dev/": change = 2769]
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/Rakefile b/Rakefile
new file mode 100644
index 0000000..bf7d6b9
--- /dev/null
+++ b/Rakefile
@@ -0,0 +1,13 @@
+# -*- ruby -*-
+
+require './lib/hoe.rb'
+
+Hoe.new("hoe", Hoe::VERSION) do |p|
+ p.rubyforge_name = "seattlerb"
+ p.summary = "Hoe is a way to write Rakefiles much easier and cleaner."
+ 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