Sha256: 122f3316ab5b8684c0a37d830fb82b560e5e6e31ae83da6e0faba2148f72a151

Contents?: true

Size: 983 Bytes

Versions: 8

Compression:

Stored size: 983 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
        attr_accessor :index

        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 File.read_binary(filename)
          else
            file = CodeObjects::ExtraFileObject.new(filename)
            options.update :object => Registry.root,
                           :type => :layout,
                           :file => file,
                           :index => index ? true : false
            render
          end
        end
      end
    end
  end
end

Version data entries

8 entries across 7 versions & 2 rubygems

Version Path
abaci-0.3.0 vendor/bundle/gems/yard-0.9.2/lib/yard/server/commands/display_file_command.rb
abaci-0.3.0 vendor/bundle/gems/yard-0.9.1/lib/yard/server/commands/display_file_command.rb
yard-0.9.5 lib/yard/server/commands/display_file_command.rb
yard-0.9.4 lib/yard/server/commands/display_file_command.rb
yard-0.9.3 lib/yard/server/commands/display_file_command.rb
yard-0.9.2 lib/yard/server/commands/display_file_command.rb
yard-0.9.1 lib/yard/server/commands/display_file_command.rb
yard-0.9.0 lib/yard/server/commands/display_file_command.rb