Skip to content

Instantly share code, notes, and snippets.

@dgilperez
Created December 11, 2011 20:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dgilperez/1462626 to your computer and use it in GitHub Desktop.
Save dgilperez/1462626 to your computer and use it in GitHub Desktop.
ERB to HAML rake task
# Don't forget to install hpricot gem.
namespace :erb do
namespace :to do
task :haml do
files = `find . -name *.html.erb`
files.each_line do |file|
file.strip!
`bundle exec html2haml #{file} | cat > #{file.gsub(/\.erb$/, ".haml")}`
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment