various speedups

This commit is contained in:
Tobias Lutke
2012-10-29 21:15:50 -04:00
parent 80be33884e
commit 858cb62c4f
12 changed files with 167 additions and 99 deletions
+2 -2
View File
@@ -4,8 +4,8 @@ require File.dirname(__FILE__) + '/theme_runner'
profiler = ThemeRunner.new
Benchmark.bmbm do |x|
x.report("parse:") { 100.times { profiler.compile } }
Benchmark.bm do |x|
# x.report("parse:") { 100.times { profiler.compile } }
x.report("parse & run:") { 100.times { profiler.run } }
end