Sha256: 68f3e1cea9f7b3a7c67d4f32fd75c2e29765d424fe81813d19d48b8ab0d247d1

Contents?: true

Size: 680 Bytes

Versions: 1

Compression:

Stored size: 680 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.1 Rakefile