6
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Compassのasset_cache_busterでMD5を使う

Posted at

Compassimage-urlを使う場合に、画像が変更されたらキャッシュを読み込まずにきちんと表示が変わるように用意されているのがasset_cache_busterという仕組み。

ところがCompassのドキュメントに書かれている方法だと画像ファイルのタイムスタンプをGETパラメーターとして付ける形になるので、複数人で開発していると何度も変更が発生する。リポジトリからダウンロードしてきたタイミングにも依存してしまうし。

なのでファイルのMD5ハッシュを設定するようにする。config.rbに以下を追記。

config.rb
# Increment the deploy_version before every release to force cache busting.
deploy_version = 1
asset_cache_buster do |http_path, real_path|
  if File.exists?(real_path)
    Digest::MD5.hexdigest(real_path.read)[0..7]
  else
    "v=#{deploy_version}"
  end
end
6
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?