Skip to content

Instantly share code, notes, and snippets.

@thadeu
Created October 2, 2018 19:59
Show Gist options
  • Save thadeu/c08cc300c0b43c09c1903ba15f853046 to your computer and use it in GitHub Desktop.
Save thadeu/c08cc300c0b43c09c1903ba15f853046 to your computer and use it in GitHub Desktop.
Convert to files html.erb to haml
for file in app/views/**/*.html.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