Sha256: d9ad2c02507e1bd421d01eabd3c1b66de8309dfc483211f00e3663e7c8111e9c

Contents?: true

Size: 854 Bytes

Versions: 3

Compression:

Stored size: 854 Bytes

Contents

module YARD
  module Server
    module Commands
      # Displays a README or extra file.
      #
      # @todo Implement better support for detecting binary (image) filetypes
      class DisplayFileCommand < LibraryCommand
        def run
          ppath = library.source_path
          filename = File.cleanpath(File.join(library.source_path, path))
          raise NotFoundError if !File.file?(filename)
          if filename =~ /\.(jpe?g|gif|png|bmp)$/i
            headers['Content-Type'] = StaticFileCommand::DefaultMimeTypes[$1.downcase] || 'text/html'
            render IO.read(filename)
          else
            file = CodeObjects::ExtraFileObject.new(filename)
            options.update(:object => Registry.root, :type => :layout, :file => file)
            render
          end
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
deg-yard-0.8.7.4 lib/yard/server/commands/display_file_command.rb
deg-yard-0.8.7.3 lib/yard/server/commands/display_file_command.rb
deg-yard-0.8.7.1 lib/yard/server/commands/display_file_command.rb