Illustrate rails/sprockets#749 .
This repo has two branches:
main
: vanilla installationsprockets_4_0_3
: sprockets pinned to 4.0.3 via gemfile.
To reproduce:
(initially, clone this repo git clone https://github.com/econya/sprockets_digest_muncher
)
bundle
rails s
And visit
http://localhost:3000/assets/otherfile.txt
-> should workhttp://localhost:3000/assets/test.txt
-> should workhttp://localhost:3000/assets/test-notafingerprint.txt
-> should NOT work
git checkout sprockets_4_0_3
bundle
rails s
And visit
http://localhost:3000/assets/otherfile.txt
-> should workhttp://localhost:3000/assets/test.txt
-> should workhttp://localhost:3000/assets/test-notafingerprint.txt
-> should work