We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent caf018e commit 430da84Copy full SHA for 430da84
1 file changed
rakelib/rdoc.rake
@@ -7,30 +7,6 @@ rescue LoadError
7
return
8
end
9
10
-if RDoc::VERSION <= "6.5.0"
11
- # RDoc 6.5.0 and earlier did not create an rdoc:coverage task. This patches it
12
- # in in the same way newer versions do.
13
- RDoc::Task.prepend(
14
- Module.new {
15
- def define
16
- super.tap do
17
- namespace rdoc_task_name do
18
- desc "Print RDoc coverage report"
19
- task :coverage do
20
- @before_running_rdoc.call if @before_running_rdoc
21
- opts = option_list << "-C"
22
- args = opts + @rdoc_files
23
-
24
- $stderr.puts "rdoc #{args.join(" ")}" if Rake.application.options.trace
25
- RDoc::RDoc.new.document(args)
26
- end
27
28
29
30
- }
31
- )
32
-end
33
34
RDoc::Task.new(:rdoc) do |rdoc|
35
rdoc.main = "README.md"
36
rdoc.markup = "markdown"
0 commit comments