class Tapioca::Dsl::Compilers::Config
def gather_constants
def gather_constants name = ::Config.const_name return [] unless Object.const_defined?(name) config_object = Object.const_get(name) options_class_name = "#{name}#{CONFIG_OPTIONS_SUFFIX}" Object.const_set(options_class_name, config_object.singleton_class) Array(config_object.singleton_class) end