# File lib/juicer/asset/path_resolver.rb, line 38
      def initialize(options = {})
        options[:base] ||= Dir.pwd
        @options = options
        @base = options[:base]
        @hosts = Juicer::Asset::Path.hosts_with_scheme(options[:hosts]) || []
        @current_host = 0
        @document_root = @options[:document_root]
      end