Class: YARD::Server::Commands::DisplayObjectCommand
- Inherits:
 - 
      LibraryCommand
      
        
- Object
 - Base
 - LibraryCommand
 - YARD::Server::Commands::DisplayObjectCommand
 
 
- Includes:
 - DocServerHelper
 
- Defined in:
 - lib/yard/server/commands/display_object_command.rb
 
Overview
Displays documentation for a specific object identified by the path
Direct Known Subclasses
Instance Method Summary collapse
Methods included from DocServerHelper
#abs_url, #base_path, #mtime, #mtime_url, #router, #url_for, #url_for_file, #url_for_frameset, #url_for_index, #url_for_list, #url_for_main
Constructor Details
This class inherits a constructor from YARD::Server::Commands::LibraryCommand
Instance Method Details
#index ⇒ Object
      36 37 38 39 40 41 42 43 44 45  | 
    
      # File 'lib/yard/server/commands/display_object_command.rb', line 36 def index Registry.load_all .update( :object => '_index.html', :objects => Registry.all(:module, :class), :type => :layout ) render end  | 
  
#not_found ⇒ Object
      47 48 49 50  | 
    
      # File 'lib/yard/server/commands/display_object_command.rb', line 47 def not_found super self.body = "Could not find object: #{object_path}" end  | 
  
#run ⇒ Object
      9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34  | 
    
      # File 'lib/yard/server/commands/display_object_command.rb', line 9 def run if path.empty? if .readme filename = .readme.filename opts = adapter..merge( :index => true, :library => library, :path => filename.sub(%r{^#{library.source_path.to_s}/}, '') ) self.status, self.headers, self.body = *DisplayFileCommand.new(opts).call(request) cache(body) return else self.path = 'index' end end return index if path == 'index' object = Registry.at(object_path) if object .update(:type => :layout) render(object) else not_found end end  |