mirror of
https://github.com/kemko/liquid.git
synced 2026-01-01 15:55:40 +03:00
22 lines
684 B
Ruby
22 lines
684 B
Ruby
# encoding: utf-8
|
|
|
|
Gem::Specification.new do |s|
|
|
s.name = "liquid"
|
|
s.version = "2.2.2"
|
|
s.platform = Gem::Platform::RUBY
|
|
s.summary = "A secure, non-evaling end user template engine with aesthetic markup."
|
|
s.authors = ["Tobias Luetke"]
|
|
s.email = ["tobi@leetsoft.com"]
|
|
s.homepage = "http://www.liquidmarkup.org"
|
|
s.description = "A secure, non-evaling end user template engine with aesthetic markup."
|
|
|
|
s.required_rubygems_version = ">= 1.3.7"
|
|
|
|
s.test_files = Dir.glob("{test}/**/*")
|
|
s.files = Dir.glob("{lib}/**/*") + %w(MIT-LICENSE README.md)
|
|
|
|
s.extra_rdoc_files = ["History.txt", "README.md"]
|
|
|
|
s.require_path = "lib"
|
|
end
|