Sha256: af58d3f1c5b6b441b01dddd13078fd2b336eaa64fc32b8b6da88a43c249f918f

Contents?: true

Size: 1.27 KB

Versions: 12

Compression:

Stored size: 1.27 KB

Contents

# -*- encoding: utf-8 -*-
require_relative 'lib/trenni/version'

Gem::Specification.new do |spec|
	spec.name          = "trenni"
	spec.platform      = Gem::Platform::RUBY
	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/Rakefile]
	spec.add_dependency "rake-compiler"
	
	spec.add_development_dependency "bundler", "~> 1.3"
	spec.add_development_dependency "rspec", "~> 3.4"
	spec.add_development_dependency "rake"
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
trenni-3.6.1 trenni.gemspec
trenni-3.6.0 trenni.gemspec
trenni-3.5.0 trenni.gemspec
trenni-3.4.0 trenni.gemspec
trenni-3.3.0 trenni.gemspec
trenni-3.2.0 trenni.gemspec
trenni-3.1.3 trenni.gemspec
trenni-3.1.2 trenni.gemspec
trenni-3.1.1 trenni.gemspec
trenni-3.1.0 trenni.gemspec
trenni-3.0.4 trenni.gemspec
trenni-3.0.3 trenni.gemspec