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