class RuboCop::RSpec::ConfigFormatter

def replace_nil(config)

def replace_nil(config)
  config.each do |key, value|
    config[key] = '~' if value.nil?
  end
end