class RSpec::Core::Configuration

def pattern=(value)

Other tags:
    Attr: value - the filename pattern to filter spec files by
def pattern=(value)
  if @spec_files_loaded
    RSpec.warning "Configuring `pattern` to #{value} has no effect since RSpec has already loaded the spec files."
  end
  @pattern = value
end