Sha256: 47667079c391422506af386fa98c023a6823f267ddc50acdc40fb8fedd8c4e28
Contents?: true
Size: 1.16 KB
Versions: 4
Compression:
Stored size: 1.16 KB
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 = "http://www.kyusu.org" 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.required_ruby_version = '>= 1.9.3' gem.add_dependency "rainbow" gem.add_dependency "rexec" gem.add_dependency "trollop" gem.add_dependency "facter" # This could be a good option in the future for teapot fetch: #gem.add_dependency "rugged" end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
teapot-0.9.4 | teapot.gemspec |
teapot-0.9.3 | teapot.gemspec |
teapot-0.9.2 | teapot.gemspec |
teapot-0.9.1 | teapot.gemspec |