Clean up Rakefile and gemspec

This commit is contained in:
Jonathan Rudenberg
2011-10-15 19:56:03 -04:00
parent 487b240404
commit 8e3f0c122e
3 changed files with 13 additions and 51 deletions

View File

@@ -1,23 +1,21 @@
# -*- encoding: utf-8 -*-
# encoding: utf-8
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = "liquid"
s.version = '2.2.2'
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.files = Dir.glob("{lib}/**/*") + %w(MIT-LICENSE README.md)
s.test_files = Dir.glob("{test}/**/*")
s.files = Dir.glob("{lib}/**/*") + %w(MIT-LICENSE README.md)
s.extra_rdoc_files = ["History.txt", "Manifest.txt", "README.md"]
s.extra_rdoc_files = ["History.txt", "README.md"]
s.require_path = 'lib'
s.require_path = "lib"
end