-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcloud_shaped.gemspec
31 lines (21 loc) · 960 Bytes
/
cloud_shaped.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
# frozen_string_literal: true
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "cloud_shaped/version"
Gem::Specification.new do |gem|
gem.name = "cloud_shaped"
gem.version = CloudShaped::VERSION
gem.summary = "DSL for AWS CloudFormation templates."
gem.description = "CloudShaped makes it easier to generate CloudFormation templates, using a Builder-like DSL."
gem.authors = ["Mike Williams"]
gem.email = ["mdub@dogbiscuit.org"]
gem.homepage = "http://github.com/mdub/cloud_shaped"
gem.license = "MIT"
gem.files = `git ls-files -z`.split("\x0")
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.add_development_dependency "bundler"
gem.add_development_dependency "rake"
gem.add_development_dependency "rspec"
gem.add_development_dependency "rubocop", "~> 0.72"
end