Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ralis でアセットのダイジェストを取得する最も簡単な方法は何ですか?
たとえば、ここにjavascriptファイルがあります
javascript_path "jquery.js"
これのダイジェストは何だろうjquery.js
jquery.js
次のように、で公開されている環境オブジェクトを使用してRails.application.assets、アセットに関する詳細情報を取得できます。
Rails.application.assets
Rails.application.assets['jquery'].digest # => "a7570eab23993d2a207ddaa1b55756c6" Rails.application.assets['jquery'].digest_path # => "jquery-a7570eab23993d2a207ddaa1b55756c6.js"