Converting ERB to HAML snippet

I’m playing around with merb so I’m using merb-gen to create some basic scaffolding; however, I’m not using ERB, the default rendering engine, I want to use haml

Haml comes with a script, html2haml, which can take HTML with ERB and convert it nicely to haml. Seeing as I would have to run that command more than once, I have a little command snippet that I like to use to aid with the conversion.

$ find . -name '*erb' | \
xargs ruby -e 'ARGV.each { |i| puts "html2haml -r #{i} #{i.sub(/erb$/,"haml")}"}'

That will print out what the html2haml commands would be, it does *not* run the command. I do that step such that I can review what will be converted. If I like what’s going to be done, then I just run that command and pipe it into bash…like so

$ find . -name '*erb' | \
xargs ruby -e 'ARGV.each { |i| puts "html2haml -r #{i} #{i.sub(/erb$/,"haml")}"}' | \
bash

If you like it, it probably wouldn’t hurt storing that as a shell script somewhere :)

12 thoughts on “Converting ERB to HAML snippet

  1. Very useful script, I would only want a way to remove the .erb files after conversion.
    I did a seperate rm `find . -name ‘*erb’` Is there a way to combine them other than say using &&

  2. i m new to rails and haml please give me step by step tutorial how yo use this script to convert erb template to haml one and all in one step on windows xp.

    Please help me!

  3. Nice tip. One extra: Once you’re absolutely /sure/ you’ve converted your files successfully, you can execute the following to remove the erb files you no longer need.

    $ find . -name ‘*erb’ -delete

    P.S. Should technically be ‘html2haml -e’ these days rather than -r, as -r is deprecated.

  4. Pingback: » Converting ERB to HAML Structured Chaos

  5. cat > ~/erb2haml <<EOF
    #!/bin/bash
    for i in `find . -name '*.erb'` ; do
    html2haml $i `echo $i | sed 's/\.erb/\.haml/'`
    done
    find . -name '*.erb' -exec rm \{\} \;
    EOF
    chmod +x ~/erb2haml
    cd myrailsproject ; ~/erb2haml

  6. Pingback: Code to Self: Converting ERB to HAML | Struktured Kaos

  7. Pingback: Converting ERB to Slim | Debugging

Leave a Reply

Your email address will not be published. Required fields are marked *

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>