Sha256: e5b40d13405b8584b8b9c17e7fa83a49963b6319ee07b60ecfd6bf19509ad45f

Contents?: true

Size: 349 Bytes

Versions: 2

Compression:

Stored size: 349 Bytes

Contents

# typed: strict
# frozen_string_literal: true

module URI
  class Generic
    class << self
      sig { params(path: String, fragment: T.nilable(String), scheme: String).returns(URI::Generic) }
      def from_path(path:, fragment: nil, scheme: "file"); end
    end

    sig { returns(T.nilable(String)) }
    def to_standardized_path; end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ruby-lsp-rspec-0.1.1 sorbet/rbi/shims/uri.rbi
ruby-lsp-rspec-0.1.0 sorbet/rbi/shims/uri.rbi