brew/Library/Homebrew/extend/git_repository.rbi
Douglas Eichelberger b90897e280 Create git_repo attr
2023-04-15 19:35:13 -07:00

11 lines
267 B
Ruby

# typed: strict
class GitRepository < SimpleDelegator
include Kernel
# This is a workaround to enable `alias pathname __getobj__`
# @see https://github.com/sorbet/sorbet/issues/2378#issuecomment-569474238
sig { returns(Pathname) }
def __getobj__; end
end