Sha256: 6aacf0e4b6bcbdc750173fe0a75536610d4a237b8145eb8c53c89bbd33261bbc
Contents?: true
Size: 1020 Bytes
Versions: 2
Compression:
Stored size: 1020 Bytes
Contents
lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "cai/ecs/entrypoint/version" Gem::Specification.new do |spec| spec.name = "cai-ecs-entrypoint" spec.version = Cai::Ecs::Entrypoint::VERSION spec.authors = ["Jarrod Carlson"] spec.email = ["jarrod.carlson@coxautoinc.com"] spec.summary = %q{Entrypoint script for ECS containers } spec.description = %q{Injects SSM paramters into Docker containers running on AWS ECS} spec.homepage = "https://ghe.coxautoinc.com/Transportation/cai-ecs-entrypoint" # Specify which files should be added to the gem when it is released. # The `git ls-files -z` loads the files in the RubyGem that have been added into git. spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } end spec.executables = "ssm-entrypoint" spec.add_dependency "aws-sdk-ssm", "~>1" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
cai-ecs-entrypoint-1.1.0 | cai-ecs-entrypoint.gemspec |
cai-ecs-entrypoint-1.0.0 | cai-ecs-entrypoint.gemspec |