module VCR::Regexes

Constants

CREDENTIALS
PORT
PROTOCOL
THE_REST

Public Instance Methods

url_regex_for_host_and_path(host, path) click to toggle source
# File lib/vcr/util/regexes.rb, line 33
def url_regex_for_host_and_path(host, path)
  @@url_host_and_path_regexes[[host, path]]
end
url_regex_for_hosts(hosts) click to toggle source
# File lib/vcr/util/regexes.rb, line 17
def url_regex_for_hosts(hosts)
  @@url_host_regexes[hosts.sort]
end
url_regex_for_path(path) click to toggle source
# File lib/vcr/util/regexes.rb, line 25
def url_regex_for_path(path)
  @@url_path_regexes[path]
end