Sha256: 2600acabc33e332177e669f77394e5d891d7be2563e897e40e6d25ea768e37f1

Contents?: true

Size: 1.06 KB

Versions: 9

Compression:

Stored size: 1.06 KB

Contents

# 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.email                 = ['stevenmajack@gmail.com', 'chris@howeville.com', 'dempsey.travis@gmail.com', 'gergnz@gmail.com']
  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.6'

  s.executables << 'cfndsl'

  s.add_development_dependency 'bundler', '~> 2.2'
  s.add_runtime_dependency 'hana', '~> 1.3'
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
cfndsl-1.4.0 cfndsl.gemspec
cfndsl-1.3.9 cfndsl.gemspec
cfndsl-1.3.8 cfndsl.gemspec
cfndsl-1.3.7 cfndsl.gemspec
cfndsl-1.3.6 cfndsl.gemspec
cfndsl-1.3.5 cfndsl.gemspec
cfndsl-1.3.4 cfndsl.gemspec
cfndsl-1.3.3 cfndsl.gemspec
cfndsl-1.3.2 cfndsl.gemspec