Skip to content

Instantly share code, notes, and snippets.

@phensalves
Created December 2, 2016 00:10
Show Gist options
  • Save phensalves/4c932b2ca4344e7ed5a9b71c910c637c to your computer and use it in GitHub Desktop.
Save phensalves/4c932b2ca4344e7ed5a9b71c910c637c to your computer and use it in GitHub Desktop.
script to convert erb to haml using html2haml gem
for file in app/views/**/*.erb; do html2haml -e $file ${file%erb}haml && rm $file; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment