Sha256: 3db00f74d6e1207443532f9ac0a5ad728c6af795b8b2a9ad1f971a44cca6339a

Contents?: true

Size: 1.34 KB

Versions: 10

Compression:

Stored size: 1.34 KB

Contents

module Gem
  class Specification
    attr_reader version (): Version

    attr_reader gem_dir (): String

    def self.find_by_name: (String name, *String requirements) -> instance
  end
end

module Bundler
  class LockfileParser
    def initialize: (String) -> void
    def specs: () -> Array[LazySpecification]
  end

  class LazySpecification
    def name: () -> String
    def version: () -> String
  end
end

module RDoc
  class Store
    def initialize: (?String? path, ?Symbol? type) -> void

    def find_class_or_module: (String) -> ClassModule?

    def load_all: () -> void
  end

  module RI
    module Paths
      type path_type = :system | :site | :home | :gem | :extra

      type gem_filter = :latest | :all

      def self.each: (?bool system, ?bool site, ?bool home, ?gem_filter | false gems, *String extra_dirs) { (String, path_type) -> void } -> void
    end
  end

  class Context < CodeObject

  end

  class ClassModule < Context
    def constants: () -> Array[Constant]

    def method_list: () -> Array[AnyMethod]

    def attributes: () -> Array[Attr]
  end

  class Markup
    class Document
      include Enumerable[Document]

      def each: () { (Document) -> void } -> void
              | () -> Enumerator[Document, void]

      def file: () -> String?

      def accept: (untyped) -> String
    end

    class ToMarkdown
    end
  end
end

Version data entries

10 entries across 10 versions & 2 rubygems

Version Path
getargv-0.3.3-universal-darwin vendor/bundle/ruby/3.3.0/gems/rbs-2.8.4/sig/shims.rbs
rbs-2.8.4 sig/shims.rbs
rbs-2.8.3 sig/shims.rbs
rbs-2.8.2 sig/shims.rbs
rbs-2.8.1 sig/shims.rbs
rbs-2.8.0 sig/shims.rbs
rbs-2.8.0.pre.1 sig/shims.rbs
rbs-2.7.0 sig/shims.rbs
rbs-2.7.0.pre.3 sig/shims.rbs
rbs-2.7.0.pre.2 sig/shims.rbs