Sha256: 5b643c5076efee2a3fbf3feb3ebc2cbad30a7da795b7b9216c75cac1b6604c58

Contents?: true

Size: 1.31 KB

Versions: 2

Compression:

Stored size: 1.31 KB

Contents

require_relative 'lib/trenni/version'

Gem::Specification.new do |spec|
	spec.name = "trenni"
	spec.platform = Gem::Platform::RUBY
  spec.license = "MIT"
	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 = "A fast native templating system that compiles directly to Ruby code."
	
	spec.homepage = "https://github.com/ioquatix/trenni"
	spec.metadata["funding_uri"] = "https://github.com/sponsors/ioquatix"
	
	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.4"
	
	spec.extensions = %w[ext/Rakefile]
	spec.add_dependency "rake-compiler"
	
	spec.add_development_dependency "rack"
	spec.add_development_dependency "bundler"
	spec.add_development_dependency "rspec", "~> 3.4"
	spec.add_development_dependency "rake"
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
trenni-3.10.0 trenni.gemspec
trenni-3.9.0 trenni.gemspec