Sha256: 251bdec8da148118ee41ee80f2faaa670ea6a292605b1aa3085c909417df3000
Contents?: true
Size: 978 Bytes
Versions: 1
Compression:
Stored size: 978 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" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
teapot-0.0.1 | teapot.gemspec |