class RSpec::Core::Configuration

def pattern= value

def pattern= value
  if @spec_files_loaded
    Kernel.warn "WARNING: Configuring `pattern` to #{value} has no effect since RSpec has already loaded the spec files. Called from #{CallerFilter.first_non_rspec_line}"
  end
  @pattern = value
end