We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using Rails::Offline the cache_block method fails to properly recurse through the images directory.
Changing line 33 from: "#{root}/images/" to: "#{root}/images//."
allows the recursion to occur and the manifest be created properly.
The text was updated successfully, but these errors were encountered:
I have notified the same issue, thanks for the tips.
Sorry, something went wrong.
I have the same issue.
I replaced line 33 with:
"#{root}/images/**/*.png", "#{root}/images/**/*.jpg", "#{root}/images/**/*.gif"]
Works fine for me now.
You could add "#{root}/images/*/.jpeg" too
No branches or pull requests
When using Rails::Offline the cache_block method fails to properly recurse through the images directory.
Changing line 33 from:
"#{root}/images/"
to:
"#{root}/images//."
allows the recursion to occur and the manifest be created properly.
The text was updated successfully, but these errors were encountered: