summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorRyan Davis <ryand@zenspider.com>2014-04-03 16:27:09 -0800
committerRyan Davis <ryand@zenspider.com>2014-04-03 16:27:09 -0800
commit5003d5a43165868976352d8b217b6e75b90c221b (patch)
tree50a42b6131b05a02912053bc4d1ed0a53e6e66eb /Rakefile
parente23897282167b2cb55007858a4d44186af24dc8d (diff)
downloadhoe-5003d5a43165868976352d8b217b6e75b90c221b.tar.gz
+ Added :rdoc plugin.
+ Renamed History.txt to History.rdoc. + Renamed README.txt to README.rdoc. Deleted stale redocs task. Massive cleanup in test_hoe.rb by making hoe helper take *skips & &block [git-p4: depot-paths = "//src/hoe/dev/": change = 9335]
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile9
1 files changed, 4 insertions, 5 deletions
diff --git a/Rakefile b/Rakefile
index 071a1bf..b911bfb 100644
--- a/Rakefile
+++ b/Rakefile
@@ -5,6 +5,7 @@ require './lib/hoe.rb'
Hoe.plugin :seattlerb
Hoe.plugin :isolate
+Hoe.plugin :rdoc
Hoe.spec "hoe" do
developer "Ryan Davis", "ryand-ruby@zenspider.com"
@@ -39,11 +40,9 @@ task :known_plugins do
end
end
-[:redocs, :docs].each do |t|
- task t do
- cp "Hoe.pdf", "doc"
- sh "chmod ug+w doc/Hoe.pdf"
- end
+task :docs do
+ cp "Hoe.pdf", "doc"
+ sh "chmod ug+w doc/Hoe.pdf"
end
# vim: syntax=ruby