-
Notifications
You must be signed in to change notification settings - Fork 6
/
lucid-cumulus.gemspec
34 lines (30 loc) · 1.61 KB
/
lucid-cumulus.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
# -*- encoding: utf-8 -*-
require "bundler"
Gem::Specification.new do |s|
s.name = "lucid-cumulus"
s.version = "0.11.21"
s.platform = Gem::Platform::RUBY
s.authors = ["Keilan Jackson", "Mark Siebert"]
s.email = "[email protected]"
s.homepage = "http://lucidsoftware.github.io/cumulus/"
s.summary = "AWS Configuration Manager"
s.description = "Cumulus allows you to manage your AWS infrastructure by creating JSON configuration files that describe your AWS resources."
s.files = `git ls-files | grep -v ^conf/ | grep -v ^cumulus-aws`.split($/)
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
s.license = "Apache-2.0"
s.add_runtime_dependency "aws-sdk-autoscaling", "~> 1"
s.add_runtime_dependency "aws-sdk-cloudfront", "~> 1"
s.add_runtime_dependency "aws-sdk-cloudwatch", "~> 1"
s.add_runtime_dependency "aws-sdk-core", "~> 3"
s.add_runtime_dependency "aws-sdk-ec2", "~> 1"
s.add_runtime_dependency "aws-sdk-elasticloadbalancing", "~> 1"
s.add_runtime_dependency "aws-sdk-iam", "~> 1"
s.add_runtime_dependency "aws-sdk-kinesis", "~> 1"
s.add_runtime_dependency "aws-sdk-lambda", "~> 1"
s.add_runtime_dependency "aws-sdk-route53", "~> 1"
s.add_runtime_dependency "aws-sdk-s3", "~> 1"
s.add_runtime_dependency "aws-sdk-sns", "~> 1"
s.add_runtime_dependency "aws-sdk-sqs", "~> 1"
s.add_runtime_dependency "parse-cron", "~> 0.1.4"
s.add_runtime_dependency "deepsort", "~> 0.1"
end