-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcapistrano3-autoscaling-deploy.gemspec
More file actions
26 lines (23 loc) · 1.12 KB
/
capistrano3-autoscaling-deploy.gemspec
File metadata and controls
26 lines (23 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# encoding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'capistrano/autoscaling_deploy/version'
Gem::Specification.new do |spec|
spec.name = 'capistrano3-autoscaling-deploy'
spec.version = Capistrano::AutoScalingDeploy::VERSION
spec.authors = ['Marcos Chicote']
spec.email = ['chicotemarcos@gmail.com']
spec.summary = %q{Deploy to AWS Auto Scaling group.}
spec.description = %q{Get all instances in an AutoScaling group by AutoScaling EC2 Tag and depoy.}
spec.homepage = 'https://github.com/mchicote/capistrano3-autoscaling-deploy'
spec.license = 'MIT'
spec.files = `git ls-files`.split($/)
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_dependency 'aws-sdk', '~> 2'
spec.add_dependency 'capistrano', '~> 3'
spec.add_dependency 'capistrano-bundler', '~> 1.2.0'
spec.add_development_dependency 'bundler', '>= 2.2.33'
spec.add_development_dependency 'rake'
end