11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# File 'lib/yard/server/commands/display_file_command.rb', line 11
def run
filename = File.cleanpath(File.join(library.source_path, path))
raise NotFoundError unless File.file?(filename)
if filename =~ /\.(jpe?g|gif|png|bmp|svg)$/i
['Content-Type'] = StaticFileCommand::DefaultMimeTypes[$1.downcase] || 'text/html'
render File.read_binary(filename)
else
file = CodeObjects::.new(filename)
options.update :object => Registry.root,
:type => :layout,
:file => file,
:index => index ? true : false
render
end
end
|