class Fauxhai::Fetcher

def host

def host
  @host ||= begin
    raise ArgumentError, ":host is a required option for Fauxhai.fetch" unless @options[:host]
    @options.delete(:host)
  end
end