module RSpec::Core::DSL

def self.expose_globally!

Other tags:
    Api: - private
def self.expose_globally!
  return if exposed_globally?
  example_group_aliases.each do |method_name|
    expose_example_group_alias_globally(method_name)
  end
  @exposed_globally = true
end