module Roda::RodaPlugins::HeaderMatchers::RequestMethods

def match_host(hostname)

can be a regexp or a string.
Match if the host of the request is the same as the hostname. +hostname+
def match_host(hostname)
  hostname === host
end