lib/emberprecompile/compiler.rb in emberprecompile-0.1.1 vs lib/emberprecompile/compiler.rb in emberprecompile-0.1.2

- old
+ new

@@ -8,20 +8,18 @@ source = "views/" output = File.new(fileName, "w") Find.find(source) do |file| if !FileTest.directory?(file) - print "Compiling "+file - templateName = file.chomp(".handlebars") - templateName.slice!(source) - result = Barber::Ember::FilePrecompiler.call(File.read(file)) - output.write('/* '+ templateName + ' Handlebar */') - output.puts @string - output.write('Ember.TEMPLATES["' + templateName + '"] = ' + result + '') - output.puts @string - print "\n" - else - next + if(file.end_with?(".handlebars")) + print "Compiling "+file + templateName = file.chomp(".handlebars") + templateName.slice!(source) + result = Barber::Ember::FilePrecompiler.call(File.read(file)) + output.write('/* '+ templateName + ' Handlebar */') + output.write('Ember.TEMPLATES["' + templateName + '"] = ' + result + '') + print "\n" + end end end print "\n" print "Pre-Compiled handlebars are ready for use....\n-------------------------------------------------------\n" end \ No newline at end of file