Method: YARD::Server::Commands::ListCommand#run

Defined in:
lib/yard/server/commands/list_command.rb

#runObject

Since:

  • 0.6.0

[View source]

8
9
10
11
12
13
14
15
16
17
18
19
20
# File 'lib/yard/server/commands/list_command.rb', line 8

def run
  Registry.load_all
  options.update(:objects => run_verifier(Registry.all(:class, :module)))
  list_type = request.path.split('/').last
  meth = "generate_#{list_type}_list"
  tpl = fulldoc_template
  if tpl.respond_to?(meth)
    tpl.send(meth)
    cache(tpl.contents)
  else
    not_found
  end
end