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
With the asset pipeline, surely there should be no need for the rake task to copy static content around? Instead it should be enough to place
*= require message_block
in application.css, and
application.css
//= require message_block
in application.js.
application.js
However, attempting to do this at the moment results in the error:
couldn't find file 'message_block'
presumably because the gem contains the assets/ directory at the top-level. If it was moved under app/, it would probably work fine.
assets/
app/
The text was updated successfully, but these errors were encountered:
No branches or pull requests
With the asset pipeline, surely there should be no need for the rake task to copy static content around? Instead it should be enough to place
in
application.css
, andin
application.js
.However, attempting to do this at the moment results in the error:
presumably because the gem contains the
assets/
directory at the top-level. If it was moved underapp/
, it would probably work fine.The text was updated successfully, but these errors were encountered: