Created
May 13, 2013 20:18
-
-
Save erotte/5571140 to your computer and use it in GitHub Desktop.
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
# https://github.com/barboza/erb2slim/blob/master/erb2slim.sh | |
gem install haml hpricot ruby_parser slim haml2slim | |
for i in `find app/views -name '*.erb'` ; do html2haml -e $i ${i%erb}haml ; git rm $i ; rm $i ; done | |
for i in `find app/views -name '*.haml'` ; do haml2slim $i ${i%haml}slim ; git rm $i ; rm $i ; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment