Sha256: a6b6f4dc57977e1cc6a69106a2ffde1db600e28202a699df3b1786e36e0f2366

Contents?: true

Size: 1.33 KB

Versions: 1

Compression:

Stored size: 1.33 KB

Contents

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

Gem::Specification.new do |spec|
	spec.name          = "trenni-formatters"
	spec.version       = Trenni::Formatters::VERSION
	spec.authors       = ["Samuel Williams"]
	spec.email         = ["samuel.williams@oriontransfer.co.nz"]
	spec.description   = <<-EOF
	Trenni is a templating system, and these formatters assist with the development
	of typical view and form based web interface. A formatter is a high-level
	adapter that turns model data into presentation text.

	Formatters are designed to be customised, typically per-project, for specific
	formatting needs.
	EOF
	spec.summary       = %q{Formatters for Trenni, to assist with typical views and form based interfaces.}
	spec.homepage      = "https://github.com/ioquatix/trenni-formatters"

	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.add_dependency "trenni", "~> 2.0"
	spec.add_dependency "mapping", "~> 1.0"
	
	spec.add_development_dependency "bundler", "~> 1.3"
	spec.add_development_dependency "rspec", "~> 3.4"
	spec.add_development_dependency "rake"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
trenni-formatters-2.0.0 trenni-formatters.gemspec