Last active
August 29, 2015 14:17
-
-
Save Luminus/adba94cc2511d1cbd5ef to your computer and use it in GitHub Desktop.
Convert all .erb files in your rails app to .slim
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
find ./app/views -name '*.erb' | xargs -I file sh -c \ | |
'html2haml --erb file | haml2slim > $(echo file | sed 's/erb/slim/') && \ | |
rm file' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment