-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcloud_builder.gemspec
More file actions
30 lines (25 loc) · 1.08 KB
/
cloud_builder.gemspec
File metadata and controls
30 lines (25 loc) · 1.08 KB
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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'cloud_builder/version'
Gem::Specification.new do |gem|
gem.name = "cloud_builder"
gem.version = CloudBuilder::GEM_VERSION
gem.authors = ["Sorin Stoiana"]
gem.email = ["sstoiana@optaros.com"]
gem.description = "Generate JSON config for AWS CloudFormation using a Ruby based DSL"
gem.summary = "Generate JSON config for AWS CloudFormation"
gem.homepage = "https://github.com/Optaros/cloud_builder"
gem.license = 'MIT'
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.add_development_dependency "netaddr"
gem.add_development_dependency "rspec", "~> 2.6"
gem.add_development_dependency "ip"
gem.add_dependency "clamp"
gem.add_dependency "json"
gem.add_dependency "aws-sdk-v1"
gem.add_dependency "activesupport"
end