mirror of
https://github.com/Shopify/liquid.git
synced 2026-09-12 23:40:45 -07:00
12 lines
262 B
Ruby
12 lines
262 B
Ruby
require 'rubygems'
|
|
require 'benchmark'
|
|
require File.dirname(__FILE__) + '/theme_runner'
|
|
|
|
profiler = ThemeRunner.new
|
|
|
|
Benchmark.bmbm do |x|
|
|
x.report("parse:") { 100.times { profiler.compile } }
|
|
x.report("parse & run:") { 100.times { profiler.run } }
|
|
end
|
|
|