Skip to content

Instantly share code, notes, and snippets.

@tamadamas
Created May 28, 2015 14:36
Show Gist options
  • Save tamadamas/759efba82eb1ce638d43 to your computer and use it in GitHub Desktop.
Save tamadamas/759efba82eb1ce638d43 to your computer and use it in GitHub Desktop.
Convert rails erb views to haml or slim
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