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
I'm currently scripting haml-coffee in my project's Makefile, and need it to compile all of the HAML files in a certain directory.
haml-coffee
Makefile
For the time being, I am using this as a workaround, but it is ugly and specific to my shell:
build: for file in views/*.haml\ do\ haml-coffee -i "${file}" -n window.View\ end
I would like to simply do this:
build: haml-coffee -i views -n window.View
Here are the steps to reproduce this bug:
Given a directory structure like:
views: index.haml
haml-coffee -i views -n window.View
Output templates should use the namespace window.View.
window.View
Output templates use the namespace window.HAML.
window.HAML
The text was updated successfully, but these errors were encountered:
6de1f77
Thanks for reporting. Released version 1.11.4 with a fix.
Sorry, something went wrong.
No branches or pull requests
I'm currently scripting
haml-coffee
in my project'sMakefile
, and need it to compile all of the HAML files in a certain directory.For the time being, I am using this as a workaround, but it is ugly and specific to my shell:
build: for file in views/*.haml\ do\ haml-coffee -i "${file}" -n window.View\ end
I would like to simply do this:
build: haml-coffee -i views -n window.View
Here are the steps to reproduce this bug:
Setup
Given a directory structure like:
Command
haml-coffee -i views -n window.View
Expected
Output templates should use the namespace
window.View
.Result
Output templates use the namespace
window.HAML
.The text was updated successfully, but these errors were encountered: