Skip to content

Instantly share code, notes, and snippets.

@erotte
Created May 13, 2013 20:18
Show Gist options
  • Save erotte/5571140 to your computer and use it in GitHub Desktop.
Save erotte/5571140 to your computer and use it in GitHub Desktop.
# 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