Class: YARD::Server::Commands::LibraryIndexCommand
- Defined in:
- lib/yard/server/commands/library_index_command.rb
Overview
Returns the index of libraries served by the server.
Instance Attribute Summary collapse
Instance Method Summary collapse
Constructor Details
This class inherits a constructor from YARD::Server::Commands::Base
Instance Attribute Details
#options ⇒ Object
6 7 8 |
# File 'lib/yard/server/commands/library_index_command.rb', line 6 def @options end |
Instance Method Details
#run ⇒ Object
8 9 10 11 12 13 14 15 16 17 18 19 20 |
# File 'lib/yard/server/commands/library_index_command.rb', line 8 def run return unless path.empty? self. = SymbolHash.new(false).update( :markup => :rdoc, :format => :html, :libraries => adapter.libraries, :adapter => adapter, :template => :doc_server, :type => :library_list ) render end |