This repository has been archived by the owner on Apr 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
capistrano-hivequeen.gemspec
58 lines (48 loc) · 2.5 KB
/
capistrano-hivequeen.gemspec
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
require File.expand_path('./lib/capistrano/hivequeen/version.rb')
Gem::Specification.new do |s|
s.specification_version = 2 if s.respond_to? :specification_version=
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
## Leave these as is they will be modified for you by the rake gemspec task.
## If your rubyforge_project name is different, then edit it and comment out
## the sub! line in the Rakefile
s.name = 'capistrano-hivequeen'
s.version = HiveQueen::Version.to_s
s.date = Time.now.strftime("%Y-%m-%d")
s.license = 'MIT'
## Make sure your summary is short. The description may be as long
## as you like.
s.summary = "Capistrano extensions for interacting with HiveQueen"
s.description = <<~DESC
Capistrano extensions for interacting with HiveQueen
Includes logic to connect with AWS EC2 Instance Connect
DESC
## List the primary authors. If there are a bunch of authors, it's probably
## better to set the email to an email list or something. If you don't have
## a custom homepage, consider using your GitHub URL or the like.
s.authors = ["Aaron Suggs"]
s.email = 'aaron@kickstarter.com'
s.homepage = 'http://github.com/kickstarter/capistrano-hivequeen'
## This sections is only necessary if you have C extensions.
# s.require_paths << 'ext'
# s.extensions = %w[ext/extconf.rb]
## If your gem includes any executables, list them here.
s.executables = []
## Specify any RDoc options here. You'll want to add your README and
## LICENSE files to the extra_rdoc_files list.
s.rdoc_options = ["--charset=UTF-8"]
s.extra_rdoc_files = %w[README.rdoc]
## List your runtime dependencies here. Runtime dependencies are those
## that are needed for an end user to actually USE your code.
s.add_dependency('aws-sdk-ec2', '~> 1.0')
s.add_dependency('aws-sdk-ec2instanceconnect', '~> 1.0')
s.add_dependency('capistrano', '~> 2.11')
s.add_dependency('activesupport', '~> 6.0')
s.add_dependency('json', '~> 2.3')
s.add_dependency('egads', '~> 5.1')
s.add_dependency('excon', '~> 0.6')
## List your development dependencies here. Development dependencies are
## those that are only needed during development
#s.add_development_dependency('rake')
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {spec,tests}/*`.split("\n")
end