Flowdock
method

setup_rdoc

Importance_0
v1_9_3_392 - Show latest stable - 0 notes - Class: DocManager
setup_rdoc() public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/rubygems/doc_manager.rb, line 207
  def setup_rdoc
    if File.exist?(@doc_dir) && !File.writable?(@doc_dir) then
      raise Gem::FilePermissionError.new(@doc_dir)
    end

    FileUtils.mkdir_p @doc_dir unless File.exist?(@doc_dir)

    self.class.load_rdoc
  end
Register or log in to add new notes.