-
Notifications
You must be signed in to change notification settings - Fork 12
/
capistrano-ec2tag.gemspec
23 lines (19 loc) · 1.05 KB
/
capistrano-ec2tag.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
$:.push File.expand_path('../lib', __FILE__)
require 'capistrano/ec2tag/version'
Gem::Specification.new do |s|
s.name = 'capistrano-ec2tag'
s.version = Capistrano::Ec2tag::VERSION
s.authors = ['Douglas Jarquin']
s.email = ['douglasjarquin@me.com']
s.homepage = 'https://github.com/douglasjarquin/capistrano-ec2tag'
s.summary = 'A Capistrano plugin aimed at easing the pain of deploying to Amazon EC2 instances.'
s.description = 'capistrano-ec2tag is a Capistrano plugin designed to simplify the task of deploying to infrastructure hosted on Amazon EC2. It was completely inspired by the capistrano-ec2group plugin, to which all credit is due.'
s.rubyforge_project = 'capistrano-ec2tag'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ['lib']
s.add_dependency 'capistrano', '>=2.15.5'
s.add_dependency 'aws-sdk', '>=1.8.5'
end