Created
September 5, 2011 09:33
-
-
Save david-hodgetts/1194564 to your computer and use it in GitHub Desktop.
Convert views to Haml
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
class ToHaml | |
def initialize(path) | |
@path = path | |
end | |
def convert! | |
Dir["#{@path}/**/*.erb"].each do |file| | |
`html2haml -rx #{file} #{file.gsub(/\.erb$/, '.haml')}` | |
end | |
end | |
end | |
path = File.join(File.dirname(__FILE__), 'app', 'views') | |
ToHaml.new(path).convert! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
original taken from -> http://snippets.dzone.com/posts/show/5449