Fix root namespace

This commit is contained in:
Douglas Eichelberger 2024-03-11 23:28:53 -07:00
parent 76932fdf7e
commit 5888cd8607
2 changed files with 5 additions and 5 deletions

View File

@ -1,8 +1,8 @@
# typed: true # typed: true
# DO NOT EDIT MANUALLY # DO NOT EDIT MANUALLY
# This is an autogenerated file for dynamic methods in `Homebrew`. # This is an autogenerated file for dynamic methods in `Homebrew::CLI::Args`.
# Please instead update this file by running `bin/tapioca dsl Homebrew`. # Please instead update this file by running `bin/tapioca dsl Homebrew::CLI::Args`.
class Homebrew::CLI::Args class Homebrew::CLI::Args
sig { returns(T::Boolean) } sig { returns(T::Boolean) }

View File

@ -21,11 +21,11 @@ module Tapioca
# FIXME: Enable cop again when https://github.com/sorbet/sorbet/issues/3532 is fixed. # FIXME: Enable cop again when https://github.com/sorbet/sorbet/issues/3532 is fixed.
# rubocop:disable Style/MutableConstant # rubocop:disable Style/MutableConstant
ConstantType = type_member { { fixed: Module } } ConstantType = type_member { { fixed: T.class_of(Homebrew::CLI::Args) } }
# rubocop:enable Style/MutableConstant # rubocop:enable Style/MutableConstant
sig { override.returns(T::Enumerable[Module]) } sig { override.returns(T::Enumerable[T.class_of(Homebrew::CLI::Args)]) }
def self.gather_constants = [Homebrew] def self.gather_constants = [Homebrew::CLI::Args]
sig { override.void } sig { override.void }
def decorate def decorate