# File lib/vcr/config.rb, line 45
    def ignore_localhost=(value)
      if value
        ignore_hosts *VCR::LOCALHOST_ALIASES
      else
        ignored_hosts.reject! { |h| VCR::LOCALHOST_ALIASES.include?(h) }
      end
    end