Sha256: efe7639eb1e1f89b29b86c5cb342a4a23d7cf947f9560d91c1920a24474e680d

Contents?: true

Size: 718 Bytes

Versions: 63

Compression:

Stored size: 718 Bytes

Contents

# frozen_string_literal: true
module YARD
  module Server
    module Commands
      class LibraryIndexOptions < CLI::YardocOptions
        attr_accessor :adapter, :libraries
        default_attr :template, :doc_server
        default_attr :type, :library_list
        default_attr :serialize, false
      end

      # Returns the index of libraries served by the server.
      class LibraryIndexCommand < Base
        attr_accessor :options

        def run
          return unless path.empty?

          self.options = LibraryIndexOptions.new
          options.adapter = adapter
          options.libraries = adapter.libraries
          options.reset_defaults
          render
        end
      end
    end
  end
end

Version data entries

63 entries across 62 versions & 9 rubygems

Version Path
abaci-0.3.0 vendor/bundle/gems/yard-0.9.7/lib/yard/server/commands/library_index_command.rb
yard-0.9.7 lib/yard/server/commands/library_index_command.rb
yard-0.9.6 lib/yard/server/commands/library_index_command.rb