Sha256: 6667d6af940ed6fdb16340caa7b744320188440f810f156fe54b136ae0283b75

Contents?: true

Size: 831 Bytes

Versions: 98

Compression:

Stored size: 831 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

98 entries across 79 versions & 9 rubygems

Version Path
challah-0.9.1.beta vendor/bundle/gems/yard-0.8.3/lib/yard/server/commands/display_file_command.rb
challah-0.9.0 vendor/bundle/gems/yard-0.8.3/lib/yard/server/commands/display_file_command.rb
challah-rolls-0.2.0 vendor/bundle/gems/challah-0.8.3/vendor/bundle/gems/yard-0.8.2.1/lib/yard/server/commands/display_file_command.rb
challah-rolls-0.2.0 vendor/bundle/gems/yard-0.8.3/lib/yard/server/commands/display_file_command.rb
challah-rolls-0.2.0 vendor/bundle/gems/yard-0.8.2.1/lib/yard/server/commands/display_file_command.rb
challah-rolls-0.2.0 vendor/bundle/gems/challah-0.8.3/vendor/bundle/gems/yard-0.8.3/lib/yard/server/commands/display_file_command.rb
challah-rolls-0.2.0 vendor/bundle/gems/challah-0.8.0.pre/vendor/bundle/gems/yard-0.8.2.1/lib/yard/server/commands/display_file_command.rb
challah-0.8.3 vendor/bundle/gems/yard-0.8.2.1/lib/yard/server/commands/display_file_command.rb
challah-0.8.3 vendor/bundle/gems/yard-0.8.3/lib/yard/server/commands/display_file_command.rb
yard-0.8.3 lib/yard/server/commands/display_file_command.rb
challah-0.8.1 vendor/bundle/gems/yard-0.8.2.1/lib/yard/server/commands/display_file_command.rb
challah-rolls-0.1.0 vendor/bundle/gems/yard-0.8.2.1/lib/yard/server/commands/display_file_command.rb
challah-rolls-0.1.0 vendor/bundle/gems/challah-0.8.0.pre/vendor/bundle/gems/yard-0.8.2.1/lib/yard/server/commands/display_file_command.rb
challah-0.8.0.pre vendor/bundle/gems/yard-0.8.2.1/lib/yard/server/commands/display_file_command.rb
challah-0.7.1 vendor/bundle/gems/yard-0.8.2.1/lib/yard/server/commands/display_file_command.rb
challah-0.7.0 vendor/bundle/gems/yard-0.8.2.1/lib/yard/server/commands/display_file_command.rb
challah-0.7.0.pre2 vendor/bundle/gems/yard-0.8.2.1/lib/yard/server/commands/display_file_command.rb
challah-0.7.0.pre vendor/bundle/gems/yard-0.8.2.1/lib/yard/server/commands/display_file_command.rb
challah-0.6.2 vendor/bundle/gems/yard-0.8.2.1/lib/yard/server/commands/display_file_command.rb
challah-0.6.2 vendor/bundle/gems/yard-0.7.5/lib/yard/server/commands/display_file_command.rb