Maintenance of Ruby 2.0.0 ended on February 24, 2016. Read more

In Files

  • rdoc/markup/include.rb

Parent

Methods

Class/Module Index [+]

Quicksearch

RDoc::Markup::Include

A file included at generation time. Objects of this class are created by RDoc::RD for an extension-less include.

This implementation in incomplete.

Attributes

file[R]

The filename to be included, without extension

include_path[R]

Directories to search for file

Public Class Methods

new(file, include_path) click to toggle source

Creates a new include that will import file from include_path

 
               # File rdoc/markup/include.rb, line 22
def initialize file, include_path
  @file = file
  @include_path = include_path
end