class RSpec::Core::Configuration

def update_pattern_attr(name, value)

def update_pattern_attr(name, value)
  if @spec_files_loaded
    RSpec.warning "Configuring `#{name}` to #{value} has no effect since " \
                  "RSpec has already loaded the spec files."
  end
  instance_variable_set(:"@#{name}", value)
  @files_to_run = nil
end