Retrieves the content for
file from the include_path
# File lib/rdoc/rd/block_parser.rb, line 351
def get_included(file)
included = []
@include_path.each do |dir|
file_name = File.join dir, file
if File.exist? file_name then
included = IO.readlines file_name
break
end
end
included
end