Skip to content

Instantly share code, notes, and snippets.

@Luminus
Last active August 29, 2015 14:17
Show Gist options
  • Save Luminus/adba94cc2511d1cbd5ef to your computer and use it in GitHub Desktop.
Save Luminus/adba94cc2511d1cbd5ef to your computer and use it in GitHub Desktop.
Convert all .erb files in your rails app to .slim
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