Files
liquid/Rakefile
T
Tobias Lütke a65bd76e72 Merge branch 'master' of [email protected]:tobi/liquid
Conflicts:
	lib/liquid.rb
	lib/liquid/context.rb
	lib/liquid/variable.rb
	test/standard_tag_test.rb
2009-06-15 09:00:30 -04:00

31 lines
700 B
Ruby
Executable File

#!/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 = "[email protected]"
p.url = "http://www.liquidmarkup.org"
end
desc "Run the liquid profile/perforamce coverage"
task :profile do
ruby "performance/shopify.rb"
end