Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use rdoc ~> 3.12.3 #307

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions recipes/tools/docs.rake
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ interpreters = RubyInstaller::BaseVersions.collect { |ver|
}

begin
gem 'rdoc', '~> 3.12'
gem 'rdoc', '~> 3.12.3'
require 'rdoc/rdoc'
gem 'rdoc_chm', '~> 3.1.0'
rescue Gem::LoadError
if Rake.application.options.show_tasks
puts "You need rdoc 3.12 and rdoc_chm 3.1.0 gems installed"
puts "You need rdoc 3.12.3 and rdoc_chm 3.1.0 gems installed"
puts "in order to build the docs tasks."
puts "Try `gem install rdoc -v 3.12` and later `gem install rdoc_chm -v 3.1.0`"
puts "Try `gem install rdoc -v 3.12.3` and later `gem install rdoc_chm -v 3.1.0`"
puts
end
interpreters = []
Expand Down