forked from cfndsl/cfndsl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cfndsl.gemspec
26 lines (22 loc) · 1.06 KB
/
cfndsl.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
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$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', 'Travis Dempsey', 'Greg Cockburn']
s.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
s.homepage = 'https://github.com/cfndsl/cfndsl'
s.license = 'MIT'
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.require_paths = ['lib']
s.bindir = 'exe'
s.required_ruby_version = '>= 2.7'
s.executables << 'cfndsl'
s.add_development_dependency 'bundler', '~> 2.2'
s.add_runtime_dependency 'hana', '~> 1.3'
end