class RSpec::Core::Configuration

def requires=(paths)

Other tags:
    Private: -
def requires=(paths)
  directories = ['lib', default_path].select { |p| File.directory? p }
  RSpec::Core::RubyProject.add_to_load_path(*directories)
  paths.each { |path| require path }
  @requires += paths
end