From 9926d86c914747efaf73baca7f0fa14439b61867 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20L=C3=BCtke?= Date: Fri, 28 Jan 2011 21:18:07 -0500 Subject: [PATCH] Fix rake file, add rake benchmark:run --- Rakefile | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/Rakefile b/Rakefile index 79cddcd..2bcba2d 100755 --- a/Rakefile +++ b/Rakefile @@ -24,14 +24,21 @@ task :release => :gem do sh "gem push pkg/liquid-#{gemspec.version}.gem" end +namespace :benchmark do + + desc "Run the liquid benchmark" + task :run do + ruby "performance/benchmark.rb" + end +end + + namespace :profile do - task :default => [:run] - - desc "Run the liquid profile/perforamce coverage" + desc "Run the liquid profile/performance coverage" task :run do - ruby "performance/shopify.rb" + ruby "performance/profile.rb" end