Method: Ore::Project#add_extra_doc_file

Defined in:
lib/ore/project.rb

#add_extra_doc_file(path) ⇒ Object (protected)

Adds an extra documentation file to the project.

Parameters:

  • path (String)

    The path to the file, relative to the project.



475
476
477
# File 'lib/ore/project.rb', line 475

def add_extra_doc_file(path)
  check_file(path) { |file| @extra_doc_files << file }
end