Sha256: c2dbab27ff9d3d836025e50883a76e09313fca38530ebb313d19626e9eaa1011

Contents?: true

Size: 1006 Bytes

Versions: 7

Compression:

Stored size: 1006 Bytes

Contents

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

Gem::Specification.new do |gem|
	gem.name          = "teapot"
	gem.version       = Teapot::VERSION
	gem.authors       = ["Samuel Williams"]
	gem.email         = ["samuel.williams@oriontransfer.co.nz"]
	gem.description   = <<-EOF
	Teapot is a tool for managing complex cross-platform builds. It provides
	advanced dependency management via the Teapot file and is supported by
	the infusions ecosystem of packages and platform tooling.
	EOF
	gem.summary       = %q{Teapot is a tool for managing complex cross-platform builds.}
	gem.homepage      = ""

	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"]
	
	gem.add_dependency "rake"
	gem.add_dependency "rainbow"
	gem.add_dependency "rexec"
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
teapot-0.3.2 teapot.gemspec
teapot-0.3.1 teapot.gemspec
teapot-0.2.2 teapot.gemspec
teapot-0.2.1 teapot.gemspec
teapot-0.2.0 teapot.gemspec
teapot-0.1.0 teapot.gemspec
teapot-0.0.3 teapot.gemspec