Sha256: 70ba4bb76d711f445ea1ba4689af7a0f01139591387008585d005c8b05297dbc
Contents?: true
Size: 1.04 KB
Versions: 6
Compression:
Stored size: 1.04 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 |gem| gem.name = "trenni" gem.version = Trenni::VERSION gem.authors = ["Samuel Williams"] gem.email = ["samuel.williams@oriontransfer.co.nz"] gem.description = <<-EOF Trenni is a templating system that evaluates textual strings containing Ruby code. It compiles templates directly into native code which means that you generally get the best possible performance. In addition, Trenni includes an SGML/XML builder to assist with the generation of pleasantly formatted markup. EOF gem.summary = %q{A fast native templating system that compiles directly to Ruby code.} gem.homepage = "https://github.com/ioquatix/trenni" 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.require_paths = ["lib"] end
Version data entries
6 entries across 6 versions & 1 rubygems
Version | Path |
---|---|
trenni-1.2.0 | trenni.gemspec |
trenni-1.1.0 | trenni.gemspec |
trenni-1.0.4 | trenni.gemspec |
trenni-1.0.3 | trenni.gemspec |
trenni-1.0.2 | trenni.gemspec |
trenni-1.0.1 | trenni.gemspec |