class YARD::Server::Commands::ListTagsCommand

List Tags powers the tags menu option in `yard server`

Public Instance Methods

items() click to toggle source
# File lib/yard/server/commands/list_command.rb, line 18
def items
  Registry.load_all
  run_verifier(Registry.all(:tag).sort_by {|t| t.value.to_s })
end
type() click to toggle source
# File lib/yard/server/commands/list_command.rb, line 16
def type; :tags end