install_rdoc()
public
Generate and install RDoc into the documentation
directory
# File lib/rubygems/doc_manager.rb, line 138
def install_rdoc
rdoc_dir = File.join @doc_dir, 'rdoc'
FileUtils.rm_rf rdoc_dir
say "Installing RDoc documentation for #{@spec.full_name}..."
run_rdoc '--op', rdoc_dir
end