mirror of
https://github.com/kemko/liquid.git
synced 2026-01-01 15:55:40 +03:00
Initial github import of liquid
This commit is contained in:
24
Rakefile
Executable file
24
Rakefile
Executable file
@@ -0,0 +1,24 @@
|
||||
#!/usr/bin/env ruby
|
||||
require 'rubygems'
|
||||
require 'rake'
|
||||
require 'hoe'
|
||||
|
||||
PKG_VERSION = "1.7.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 = nil
|
||||
p.author = "Tobias Luetke"
|
||||
p.email = "tobi@leetsoft.com"
|
||||
p.url = "http://home.leetsoft.com/liquid"
|
||||
end
|
||||
Reference in New Issue
Block a user