forked from praiseworthy/opworks_interactor
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathopsworks_interactor.gemspec
22 lines (19 loc) · 997 Bytes
/
opsworks_interactor.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'opsworks_interactor/version'
Gem::Specification.new do |spec|
spec.name = 'opsworks_interactor'
spec.version = OpsworksInteractor::VERSION
spec.authors = ['Sam Davies', 'Trae Robrock']
spec.email = ['[email protected]', '[email protected]']
spec.summary = 'Easily do zero-downtime deploys on Amazon Opsworks'
spec.description = 'A ruby class that allows concurrent-safe, synchronized, zero-downtime rolling deploys to servers running on Amazon Opsworks'
spec.homepage = 'https://github.org/trobrock/opworks_interactor'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.add_runtime_dependency 'aws-sdk', '~> 2'
end