forked from realestate-com-au/stackup
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstackup.gemspec
More file actions
30 lines (22 loc) · 973 Bytes
/
stackup.gemspec
File metadata and controls
30 lines (22 loc) · 973 Bytes
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
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "stackup/version"
Gem::Specification.new do |spec|
spec.name = "stackup"
spec.version = Stackup::VERSION
spec.authors = ["Mike Williams", "Arvind Kunday"]
spec.email = ["mike.williams@rea-group.com", "arvind.kunday@rea-group.com"]
spec.summary = "Manage CloudFormation stacks"
spec.homepage = "https://github.com/realestate-com-au/stackup"
spec.license = "MIT"
spec.files = Dir.glob("{bin,lib,spec}/**/*") + %w[README.md CHANGES.md LICENSE.md]
spec.test_files = spec.files.grep(/^spec/)
spec.require_paths = ["lib"]
spec.bindir = "bin"
spec.executables << "stackup"
spec.add_dependency "aws-sdk-cloudformation", "~> 1.6"
spec.add_dependency "clamp", "~> 1.2"
spec.add_dependency "console_logger"
spec.add_dependency "diffy", "~> 3.2"
spec.add_dependency "multi_json"
end