# File lib/juicer/asset/path.rb, line 114 def absolute_path(options = {}) if !@absolute_path # Pre-conditions raise ArgumentError.new("No document root set") if @document_root.nil? @absolute_path = filename.sub(%r{^#@document_root}, '').sub(/^\/?/, '/') @absolute_path = "#{Juicer::Asset::Path.host_with_scheme(options[:host])}#@absolute_path" end path_with_cache_buster(@absolute_path, options) end