tobi / liquid

Liquid markup language. Save, customer facing template language for flexible web apps.

This URL has Read+Write access

tobi (author)
Sun Jun 14 15:09:40 -0700 2009
commit  37e913f755a5b30dae68accbe252612aac7998ec
tree    186d298cea358405babf852d5665e37b7a161f7c
parent  5e0ad75ff514fbdcc548cd54fa5f1943d07d569b
liquid / Rakefile
100755 31 lines (25 sloc) 0.7 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/usr/bin/env ruby
require 'rubygems'
require 'rake'
require 'hoe'
 
PKG_VERSION = "1.9.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