Sha256: 5f61d11379a4e69271737b3b535594eb2d9d77582e42dcd66be97d83a56fb1ee
Contents?: true
Size: 918 Bytes
Versions: 11
Compression:
Stored size: 918 Bytes
Contents
# 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.homepage = 'https://github.com/stevenjack/cfndsl' s.license = 'MIT' s.test_files = s.files.grep(%r{^(test|spec|features)/}) s.require_paths = ['lib'] s.executables << 'cfndsl' s.add_development_dependency 'bundler' s.post_install_message = "'addTag' is now deprecated in favour of 'add_tag'. 'addTag' will be removed in the next major version." end
Version data entries
11 entries across 11 versions & 1 rubygems