More little fixes and changed default benchmark

This commit is contained in:
Tristan Hume
2013-08-02 15:21:15 -04:00
parent 15b53b77d6
commit 6cde98319f
3 changed files with 11 additions and 7 deletions

View File

@@ -38,14 +38,14 @@ end
namespace :benchmark do
desc "Run the liquid benchmark"
desc "Run the liquid benchmark with lax parsing"
task :run do
ruby "./performance/benchmark.rb strict"
ruby "./performance/benchmark.rb lax"
end
desc "Run the liquid benchmark with lax parsing"
task :lax do
ruby "./performance/benchmark.rb lax"
desc "Run the liquid benchmark with strict parsing"
task :strict do
ruby "./performance/benchmark.rb strict"
end
end