Created
May 28, 2015 14:36
-
-
Save tamadamas/759efba82eb1ce638d43 to your computer and use it in GitHub Desktop.
Convert rails erb views to haml or slim
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
gem install html2haml | |
for file in app/views/**/*.html.erb; do html2haml -e $file ${file%erb}haml && rm $file; done | |
gem install html2slim | |
for file in app/views/**/*.html.erb; do erb2slim $file ${file%erb}slim && rm $file; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment