Sha256: fab733e648470654299225466393af948354739f3e0bba6d58e0147e7c876754

Contents?: true

Size: 631 Bytes

Versions: 76

Compression:

Stored size: 631 Bytes

Contents

module YARD
  module Server
    module Commands
      # Returns a list of objects of a specific type
      class ListCommand < LibraryCommand
        include Templates::Helpers::BaseHelper

        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
      end
    end
  end
end

Version data entries

76 entries across 59 versions & 8 rubygems

Version Path
abaci-0.3.0 vendor/bundle/gems/yard-0.9.2/lib/yard/server/commands/list_command.rb
abaci-0.3.0 vendor/bundle/gems/yard-0.9.1/lib/yard/server/commands/list_command.rb
yard-0.9.5 lib/yard/server/commands/list_command.rb
yard-0.9.4 lib/yard/server/commands/list_command.rb
yard-0.9.3 lib/yard/server/commands/list_command.rb
yard-0.9.2 lib/yard/server/commands/list_command.rb
yard-0.9.1 lib/yard/server/commands/list_command.rb
yard-0.9.0 lib/yard/server/commands/list_command.rb
yard-0.8.7.6 lib/yard/server/commands/list_command.rb
yard-0.8.7.5 lib/yard/server/commands/list_command.rb
climine-0.0.7 vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/server/commands/list_command.rb
climine-0.0.7 vendor/bundle/ruby/2.0.0/gems/yard-0.8.7.3/lib/yard/server/commands/list_command.rb
climine-0.0.6 vendor/bundle/ruby/2.0.0/gems/yard-0.8.7.3/lib/yard/server/commands/list_command.rb
climine-0.0.5 vendor/bundle/ruby/2.0.0/gems/yard-0.8.7.3/lib/yard/server/commands/list_command.rb
yard-0.8.7.4 lib/yard/server/commands/list_command.rb
climine-0.0.4 vendor/bundle/ruby/2.0.0/gems/yard-0.8.7.3/lib/yard/server/commands/list_command.rb
climine-0.0.3 vendor/bundle/ruby/2.0.0/gems/yard-0.8.7.3/lib/yard/server/commands/list_command.rb
mango-0.8.0 vendor/bundler/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/server/commands/list_command.rb
mango-0.7.1 vendor/bundler/ruby/2.0.0/gems/yard-0.8.7.3/lib/yard/server/commands/list_command.rb
mango-0.7.0 vendor/bundler/ruby/2.0.0/gems/yard-0.8.7.3/lib/yard/server/commands/list_command.rb