liquor.gemspec in liquor-0.1.1 vs liquor.gemspec in liquor-0.9.1
- old
+ new
@@ -1,19 +1,42 @@
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/liquor/version', __FILE__)
Gem::Specification.new do |gem|
- gem.authors = ["Timothy N. Tsvetkov", "Yaroslav Markin", "Ivan Evtukhovich"]
- gem.email = ["timothy.tsvetkov@gmail.com"]
- gem.description = %q{Liquor is a safe (not evaling) template language based on Liquid template language}
- gem.summary = %q{Liquor is a safe (not evaling) template language based on Liquid template language. Safe means that templates cannot affect security of the server they are rendered on. So it is usable when you need to give an ability to edit templates to your users (HTML or email).}
- gem.homepage = "https://github.com/evilmartians/liquor"
+ gem.authors = ["Peter Zotov",
+ "Nate Gadgibalaev",
+ "Yaroslav Markin"]
+ gem.email = ["whitequark@whitequark.org",
+ "nat@xnsv.ru",
+ "yaroslav@markin.net"]
+
+ gem.description = %q{Liquor is a template system based on well-defined, strongly } <<
+ %q{dynamically typed language which is fun to use and easy to debug.}
+ gem.summary = gem.description
+ gem.homepage = "http://github.com/evilmartians/liquor"
+
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "liquor"
gem.require_paths = ["lib"]
gem.version = Liquor::VERSION
- gem.add_dependency 'rails', '~> 3.2.0'
+ gem.required_ruby_version = '>= 1.9'
+
+ # Generation of the parsers and documentation.
+ gem.add_development_dependency 'rake'
+ gem.add_development_dependency 'racc'
+ gem.add_development_dependency 'kramdown'
+
+ # Testing.
+ gem.add_development_dependency 'rspec'
+ gem.add_development_dependency 'simplecov'
+ gem.add_development_dependency 'guard-rspec'
+
+ # Testing dependencies.
+ gem.add_development_dependency 'rails'
+ gem.add_development_dependency 'nokogiri'
+ gem.add_development_dependency 'htmlentities'
+ gem.add_development_dependency 'sqlite3'
end