Sha256: d600aa0e9b986506f858c99955b9c7e7a8f99ea703f2f1927f07bb6666c2b9d4
Contents?: true
Size: 960 Bytes
Versions: 1
Compression:
Stored size: 960 Bytes
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'tfmodtest/version' Gem::Specification.new do |spec| spec.name = 'tfmodtest' spec.version = TFModTest::VERSION spec.authors = ['Victor Jimenez', 'Daniel Baker'] spec.email = ['vjimenez@vistaprint.com', 'dbaker@vistaprint.com'] spec.summary = 'Set of scripts to ease testing of Terraform modules.' spec.homepage = 'https://github.com/vistaprint/tfmodtest' spec.license = 'Apache-2.0' spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|spec|features)/}) end spec.bindir = 'exe' spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.add_development_dependency 'bundler' spec.add_development_dependency 'rake' spec.add_runtime_dependency 'TerraformDevKit', '~> 0.4' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
tfmodtest-0.1.0 | tfmodtest.gemspec |