non-stupid-digest-assets
non-stupid-digest-assets copied to clipboard
Some assets still digested with asset_sync gem - howto
Actually gem working well, created non digested assets in the path.
Problem comes when asset_sync gem reading rails 4 manifest file which is not include "non-digested" stuff.
solved easily with setting manifest to false in the AssetSync configuration (so it read files after precompile), eg:
AssetSync.configure do |config|
config.manifest = false
end
:+1: