Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion rakelib/rdoc.rake
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# frozen_string_literal: true

require "rdoc/task"
begin
require "rdoc/task"
rescue LoadError
# RDoc is not available
return
end

if RDoc::VERSION <= "6.5.0"
# RDoc 6.5.0 and earlier did not create an rdoc:coverage task. This patches it
Expand Down
Loading