Sha256: 97a70e7eb8bd3bf253bf89c6418695911ae8c13238fed4f059e301882e283c2b
Contents?: true
Size: 1.57 KB
Versions: 2
Compression:
Stored size: 1.57 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'terrenv/version' Gem::Specification.new do |spec| spec.name = "terrenv" spec.version = Terrenv::VERSION spec.authors = ["Kinnan Kwok"] spec.email = ["kkwoker@gmail.com"] spec.summary = 'Terrenv allows you to host separate environments of your terraform infrastructure by switching softlinks' spec.description = 'Terrenv allows you to host separate environments of your terraform infrastructure by switching softlinks' spec.homepage = "https://github.com/kkwoker/terrenv" spec.license = "MIT" # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host' # to allow pushing to a single host or delete this section to allow pushing to any host. #if spec.respond_to?(:metadata) # spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com'" #else # raise "RubyGems 2.0 or newer is required to protect against public gem pushes." #end spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.bindir = "bin" spec.executables = 'terrenv' #spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_development_dependency 'bundler', '~> 1.12' spec.add_development_dependency 'rake', '~> 10.0' spec.add_development_dependency 'rspec', '~> 3.0' spec.add_development_dependency 'pry', '~> 0.10.3' spec.add_runtime_dependency 'thor', '~> 0.19.1' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
terrenv-0.0.6 | terrenv.gemspec |
terrenv-0.0.4 | terrenv.gemspec |