Sha256: f8fe64445cce3b9bd22d5c08f59a4be78fde7f4f72093e36ca2f6b2456d49ae6
Contents?: true
Size: 695 Bytes
Versions: 1
Compression:
Stored size: 695 Bytes
Contents
#!/usr/bin/env ruby require 'rubygems' require 'rake' require 'rake/testtask' require "bundler/gem_tasks" PKG_VERSION = "1.0.0" PKG_NAME = "liquor" PKG_DESC = "A secure non evaling end user template engine with aesthetic markup based on Liquor template engine." Rake::TestTask.new(:test) do |t| t.libs << '.' << 'lib' << 'test' t.pattern = 'test/*_test.rb' t.verbose = false end namespace :profile do task :default => [:run] desc "Run the liquor profile/perforamce coverage" task :run do ruby "performance/shopify.rb" end desc "Run KCacheGrind" task :grind => :run do system "kcachegrind /tmp/liquor.rubyprof_calltreeprinter.txt" end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
liquor-0.1.0 | Rakefile |