Sha256: 3fce4e19534030b3ea087162d0dccc9b3d4c5fe8f214a86ba39052900ad79a2e

Contents?: true

Size: 1.28 KB

Versions: 4

Compression:

Stored size: 1.28 KB

Contents

# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'trenni/version'

Gem::Specification.new do |spec|
	spec.name          = "trenni"
	spec.version       = Trenni::VERSION
	spec.authors       = ["Samuel Williams"]
	spec.email         = ["samuel.williams@oriontransfer.co.nz"]
	spec.description   = <<-EOF
	Trenni is a templating system built on top of SGML/XML. It uses efficient
	native parsers where possible and compiles templates into efficient Ruby.
	
	In addition, Trenni includes an SGML/XML builder to assist with the generation
	of pleasantly formatted markup which is compatible with the included parsers.
	EOF
	spec.summary       = %q{A fast native templating system that compiles directly to Ruby code.}
	spec.homepage      = "https://github.com/ioquatix/trenni"

	spec.files         = `git ls-files`.split($/)
	spec.executables   = spec.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
	spec.test_files    = spec.files.grep(%r{^(test|spec|features)/})
	spec.require_paths = ["lib"]
	
	spec.required_ruby_version = '~> 2.1'
	
	spec.extensions = %w[ext/trenni/extconf.rb]
	
	spec.add_development_dependency "bundler", "~> 1.3"
	spec.add_development_dependency "rspec", "~> 3.4"
	spec.add_development_dependency "rake"
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
trenni-3.0.0 trenni.gemspec
trenni-2.1.0 trenni.gemspec
trenni-2.0.2 trenni.gemspec
trenni-2.0.1 trenni.gemspec