Skip to content

Instantly share code, notes, and snippets.

@jesusgollonet
Last active December 17, 2015 17:09
Show Gist options
  • Save jesusgollonet/5643861 to your computer and use it in GitHub Desktop.
Save jesusgollonet/5643861 to your computer and use it in GitHub Desktop.
convert all files in current directory to handlebars templates
# i know, could do that in bash
Dir.glob("#{Dir.pwd}/*").each do |f|
system("handlebars #{f} -f #{Dir.pwd}/#{File.basename(f, ".*")}.js ")
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment