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
21 lines (16 loc) · 755 Bytes
/
stackup.gemspec
File metadata and controls
21 lines (16 loc) · 755 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |spec|
spec.name = "stackup"
spec.version = "0.0.7"
spec.authors = ["Arvind Kunday", "Mike Williams"]
spec.email = ["arvind.kunday@rea-group.com", "mike.williams@rea-group.com"]
spec.summary = "Tools for deployment to AWS"
spec.homepage = "https://github.com/realestate-com-au/stackup"
spec.license = "MIT"
spec.files = Dir["**/*"].reject { |f| File.directory?(f) }
spec.executables = spec.files.grep(/^bin/) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_dependency "aws-sdk", "~> 2.0"
spec.add_dependency "clamp", "~> 1.0"
end