class RSpec::Core::DRbOptions

def add_full_description(argv)

def add_full_description(argv)
  return unless @submitted_options[:full_description]
  # The argument to --example is regexp-escaped before being stuffed
  # into a regexp when received for the first time (see OptionParser).
  # Hence, merely grabbing the source of this regexp will retain the
  # backslashes, so we must remove them.
  @submitted_options[:full_description].each do |description|
    argv << "--example" << description.source.delete('\\')
  end
end