Sha256: 24ffbf2db468af33ebf4838dd9c3b2c75caced3a25b9cd5acd65e543a4c935f0

Contents?: true

Size: 700 Bytes

Versions: 1

Compression:

Stored size: 700 Bytes

Contents

#!/usr/bin/env ruby
require 'rubygems'
require 'rake'
require 'hoe'

PKG_VERSION = "2.0.0"
PKG_NAME    = "liquid"
PKG_DESC    = "A secure non evaling end user template engine with aesthetic markup."

Rake::TestTask.new(:test) do |t|
  t.libs << "lib"
  t.libs << "test"
  t.pattern = 'test/*_test.rb'
  t.verbose = false
end

Hoe.new(PKG_NAME, PKG_VERSION) do |p|
  p.rubyforge_name = PKG_NAME
  p.summary        = PKG_DESC
  p.description    = PKG_DESC
  p.author         = "Tobias Luetke"
  p.email          = "tobi@leetsoft.com"
  p.url            = "http://www.liquidmarkup.org"    
end

desc "Run the liquid profile/perforamce coverage"
task :profile do
  
  ruby "performance/shopify.rb"
  
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
tobi-liquid-2.0.1 Rakefile