Sha256: 5253b8363ee73bb1fe0c1e17846651e01685d896aa3002d67ae391812bafd922

Contents?: true

Size: 981 Bytes

Versions: 1

Compression:

Stored size: 981 Bytes

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)

require 'docker/deploy/version'

Gem::Specification.new do |spec|
  spec.name          = 'docker-eb-deploy'
  spec.version       = Docker::Deploy::VERSION
  spec.authors       = [ 'Alvin Yim' ]
  spec.email         = [ 'alvin.yim@sealink.com.au' ]

  spec.summary       = 'Tag the Git repo for Docker Hub to build the image'
  spec.description   = 'Tag the Git repo for Docker Hub to build the image for Elastic Beanstalk'
  spec.homepage      = 'https://github.com/sealink/docker-eb-deploy'
  spec.license       = 'MIT'

  spec.files         = `git ls-files -z`.split("\x0").reject { |f| f.match %r{^(test|spec|features)/} }

  spec.bindir        = 'bin'
  spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename f }
  spec.require_paths = [ 'lib' ]

  spec.add_dependency 'deploy_aws', '0.1.0'

  spec.add_development_dependency 'rspec', '~> 3.4'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
docker-eb-deploy-0.1.1 docker-eb-deploy.gemspec