forked from cfndsl/cfndsl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcfndsl.gemspec
21 lines (19 loc) · 905 Bytes
/
cfndsl.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# coding: utf-8
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "cfndsl/version"
Gem::Specification.new do |s|
s.name = "cfndsl"
s.version = CfnDsl::VERSION
s.summary = "AWS Cloudformation DSL"
s.description = "DSL for creating AWS Cloudformation templates"
s.authors = ["Steven Jack", "Chris Howe"]
s.email = ["stevenmajack@gmail.com", "chris@howeville.com"]
s.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
s.executables << "cfndsl"
s.homepage = "https://github.com/stevenjack/cfndsl"
s.license = "MIT"
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.require_paths = ["lib"]
s.add_development_dependency "bundler"
end