blob: 9d9131096955a824b401157e45174ffa80810582 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
##
# RDoc plugin for hoe. Switches default text files to rdoc.
module Hoe::Rdoc
def initialize_rdoc
self.readme_file = self.readme_file.sub(/\.txt$/, ".rdoc")
self.history_file = self.history_file.sub(/\.txt$/, ".rdoc")
end
def define_rdoc_tasks
# do nothing
end
end
|