a little testing

This commit is contained in:
tdreyno 2009-10-01 11:26:46 -07:00
parent a55725a9be
commit b35f026aba
9 changed files with 115 additions and 26 deletions

View file

@ -1,9 +1,18 @@
# def cache_buster
# if File.readable?(real_path)
# File.mtime(real_path).strftime("%s")
# else
# $stderr.puts "WARNING: '#{File.basename(path)}' was not found (or cannot be read) in #{File.dirname(real_path)}"
# end
# end
class Middleman::Base
helpers do
alias_method :pre_cache_buster_asset_url, :asset_url
def asset_url(path, prefix="")
path = pre_cache_buster_asset_url(path, prefix)
if path.include?("://")
path
else
real_path = File.join(options.public, path)
if File.readable?(real_path)
path << "?" + File.mtime(real_path).strftime("%s")
else
$stderr.puts "WARNING: '#{File.basename(path)}' was not found (or cannot be read) in #{File.dirname(real_path)}"
end
end
end
end
end