cfndsl 0.16.13 → 0.17.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +15 -2
- data/Gemfile +2 -0
- data/README.md +1 -1
- data/Rakefile +2 -0
- data/bin/cfndsl +9 -8
- data/cfndsl.gemspec +3 -1
- data/lib/cfndsl.rb +2 -0
- data/lib/cfndsl/aws/cloud_formation_template.rb +2 -0
- data/lib/cfndsl/aws/types.rb +3 -1
- data/lib/cfndsl/conditions.rb +2 -0
- data/lib/cfndsl/creation_policy.rb +2 -0
- data/lib/cfndsl/errors.rb +2 -0
- data/lib/cfndsl/external_parameters.rb +4 -0
- data/lib/cfndsl/globals.rb +2 -0
- data/lib/cfndsl/json_serialisable_object.rb +2 -0
- data/lib/cfndsl/jsonable.rb +2 -0
- data/lib/cfndsl/mappings.rb +2 -0
- data/lib/cfndsl/module.rb +2 -0
- data/lib/cfndsl/names.rb +2 -0
- data/lib/cfndsl/orchestration_template.rb +3 -1
- data/lib/cfndsl/os/heat_template.rb +2 -0
- data/lib/cfndsl/os/types.rb +3 -1
- data/lib/cfndsl/outputs.rb +2 -0
- data/lib/cfndsl/parameters.rb +2 -0
- data/lib/cfndsl/patches.rb +14 -0
- data/lib/cfndsl/plurals.rb +2 -0
- data/lib/cfndsl/properties.rb +2 -0
- data/lib/cfndsl/rake_task.rb +4 -2
- data/lib/cfndsl/ref_check.rb +2 -0
- data/lib/cfndsl/resources.rb +2 -0
- data/lib/cfndsl/specification.rb +2 -0
- data/lib/cfndsl/types.rb +2 -0
- data/lib/cfndsl/update_policy.rb +2 -0
- data/lib/cfndsl/version.rb +3 -1
- data/lib/cfnlego.rb +2 -0
- data/lib/cfnlego/cloudformation.rb +3 -1
- data/lib/cfnlego/resource.rb +2 -0
- data/lib/deep_merge/core.rb +3 -1
- data/lib/deep_merge/deep_merge.rb +2 -0
- data/sample/autoscale.rb +2 -0
- data/sample/autoscale2.rb +2 -0
- data/sample/circular.rb +2 -0
- data/sample/codedeploy.rb +3 -1
- data/sample/config_service.rb +2 -0
- data/sample/ecs.rb +3 -1
- data/sample/export.rb +2 -0
- data/sample/iam_policies.rb +2 -0
- data/sample/import.rb +2 -0
- data/sample/lambda.rb +3 -1
- data/sample/s3.rb +2 -0
- data/sample/t1.rb +2 -0
- data/sample/vpc_example.rb +2 -0
- data/sample/vpc_with_vpn_example.rb +2 -0
- data/spec/aws/ec2_security_group_spec.rb +2 -0
- data/spec/aws/ecs_task_definition_spec.rb +2 -0
- data/spec/aws/iam_managed_policy_spec.rb +2 -0
- data/spec/aws/kms_alias_spec.rb +2 -0
- data/spec/aws/logs_log_group_spec.rb +2 -0
- data/spec/aws/nested_arrays_spec.rb +2 -0
- data/spec/aws/rds_db_instance_spec.rb +2 -0
- data/spec/aws/serverless_spec.rb +2 -0
- data/spec/cfndsl_spec.rb +2 -0
- data/spec/cli_spec.rb +23 -8
- data/spec/cloud_formation_template_spec.rb +2 -0
- data/spec/deep_merge_spec.rb +2 -0
- data/spec/external_parameters_spec.rb +2 -0
- data/spec/fixtures/heattest.rb +2 -0
- data/spec/fixtures/test.rb +3 -1
- data/spec/generate_spec.rb +2 -0
- data/spec/heat_template_spec.rb +2 -0
- data/spec/jsonable_spec.rb +2 -0
- data/spec/metadata_spec.rb +2 -0
- data/spec/names_spec.rb +2 -0
- data/spec/output_spec.rb +2 -0
- data/spec/plurals_spec.rb +2 -0
- data/spec/resources_spec.rb +2 -0
- data/spec/spec_helper.rb +2 -0
- data/spec/support/shared_examples/orchestration_template.rb +2 -0
- data/spec/transform_spec.rb +2 -0
- data/spec/types_definition_spec.rb +2 -0
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1a5775bb9e498105174a3304e86d6d7d356d68dfbfe7754d2746a9aa40be003b
|
|
4
|
+
data.tar.gz: e8728173d33d41f4759bdf8627e25b3173273490b0e959687e3b44af1fd1bd1e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0e3a197bd97878c4eba85d5f53892c9f2b0be90e61a8c5dc2e99d4ec4ae77edd83b4cff1c993d955064ae59eb2fb8779ed9f8d5782dc662ddde53be8f421e44c
|
|
7
|
+
data.tar.gz: 42fc049052509fb1dfffe9c0e1acf477c72a4980ade6baf30ac22a25e17384557533a2a684dd2c2f9cfeddc2111daaa9ed46dc5c1126179d1d99f8cf5bbb98c1
|
data/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,20 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
## [0.
|
|
4
|
-
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.16.
|
|
3
|
+
## [0.17.0](https://github.com/cfndsl/cfndsl/tree/0.17.0) (2019-06-16)
|
|
4
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.16.13...0.17.0)
|
|
5
|
+
|
|
6
|
+
**Closed issues:**
|
|
7
|
+
|
|
8
|
+
- Handle Transform keywork [\#406](https://github.com/cfndsl/cfndsl/issues/406)
|
|
9
|
+
|
|
10
|
+
**Merged pull requests:**
|
|
11
|
+
|
|
12
|
+
- add the latest patches [\#411](https://github.com/cfndsl/cfndsl/pull/411) ([gergnz](https://github.com/gergnz))
|
|
13
|
+
- fix all the latest rubocop issues [\#410](https://github.com/cfndsl/cfndsl/pull/410) ([gergnz](https://github.com/gergnz))
|
|
14
|
+
- Added cfndsl patch for AWSEC2CapacityReservationTag Name Error [\#409](https://github.com/cfndsl/cfndsl/pull/409) ([sktan](https://github.com/sktan))
|
|
15
|
+
|
|
16
|
+
## [v0.16.13](https://github.com/cfndsl/cfndsl/tree/v0.16.13) (2019-03-22)
|
|
17
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.16.12...v0.16.13)
|
|
5
18
|
|
|
6
19
|
**Closed issues:**
|
|
7
20
|
|
data/Gemfile
CHANGED
data/README.md
CHANGED
data/Rakefile
CHANGED
data/bin/cfndsl
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env ruby
|
|
2
|
+
# frozen_string_literal: true
|
|
2
3
|
|
|
3
4
|
require 'cfndsl/globals'
|
|
4
5
|
require 'cfndsl/version'
|
|
@@ -65,7 +66,7 @@ optparse = OptionParser.new do |opts|
|
|
|
65
66
|
end
|
|
66
67
|
|
|
67
68
|
opts.on('-u', '--update-specification [VERSION]', 'Update the Resource Specification file to latest, or specific version') do |file|
|
|
68
|
-
options[:spec_version] = file || 'latest'
|
|
69
|
+
options[:spec_version] = file || 'latest'
|
|
69
70
|
options[:update_spec] = true
|
|
70
71
|
end
|
|
71
72
|
|
|
@@ -94,21 +95,21 @@ end
|
|
|
94
95
|
optparse.parse!
|
|
95
96
|
|
|
96
97
|
if options[:update_spec]
|
|
97
|
-
|
|
98
|
+
warn 'Updating specification file'
|
|
98
99
|
FileUtils.mkdir_p File.dirname(CfnDsl.specification_file)
|
|
99
100
|
begin
|
|
100
101
|
content = open("https://d1uauaxba7bl26.cloudfront.net/#{options[:spec_version]}/gzip/CloudFormationResourceSpecification.json").read
|
|
101
102
|
rescue OpenURI::HTTPError
|
|
102
|
-
|
|
103
|
+
warn "Resource Specification version #{options[:spec_version]} not found, defaulting to 'latest'"
|
|
103
104
|
content = open('https://d1uauaxba7bl26.cloudfront.net/latest/gzip/CloudFormationResourceSpecification.json').read
|
|
104
105
|
end
|
|
105
106
|
File.open(CfnDsl.specification_file, 'w') { |f| f.puts content }
|
|
106
|
-
|
|
107
|
+
warn "Specification successfully written to #{CfnDsl.specification_file}"
|
|
107
108
|
end
|
|
108
109
|
|
|
109
110
|
if options[:assetversion]
|
|
110
111
|
spec_file = JSON.parse File.read(CfnDsl.specification_file)
|
|
111
|
-
|
|
112
|
+
warn spec_file['ResourceSpecificationVersion']
|
|
112
113
|
end
|
|
113
114
|
|
|
114
115
|
if options[:lego]
|
|
@@ -129,7 +130,7 @@ filename = File.expand_path(ARGV[0])
|
|
|
129
130
|
verbose = options[:verbose] && STDERR
|
|
130
131
|
|
|
131
132
|
unless CfnDsl.disable_binding?
|
|
132
|
-
|
|
133
|
+
warn <<-MSG.gsub(/^\s*/, '')
|
|
133
134
|
The creation of constants as config is deprecated!
|
|
134
135
|
Please switch to the #external_parameters method within your templates to access variables
|
|
135
136
|
See https://github.com/cfndsl/cfndsl/issues/170
|
|
@@ -137,7 +138,7 @@ unless CfnDsl.disable_binding?
|
|
|
137
138
|
MSG
|
|
138
139
|
end
|
|
139
140
|
|
|
140
|
-
|
|
141
|
+
warn "Using specification file #{CfnDsl.specification_file}" if verbose
|
|
141
142
|
|
|
142
143
|
require 'cfndsl'
|
|
143
144
|
|
|
@@ -145,7 +146,7 @@ model = CfnDsl.eval_file_with_extras(filename, options[:extras], verbose)
|
|
|
145
146
|
|
|
146
147
|
output = STDOUT
|
|
147
148
|
if options[:output] != '-'
|
|
148
|
-
|
|
149
|
+
puts("Writing to #{options[:output]}") if verbose
|
|
149
150
|
output = File.open(File.expand_path(options[:output]), 'w')
|
|
150
151
|
elsif verbose
|
|
151
152
|
verbose.puts('Writing to STDOUT')
|
data/cfndsl.gemspec
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
lib = File.expand_path('lib', __dir__)
|
|
2
4
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
3
5
|
require 'cfndsl/version'
|
|
@@ -14,7 +16,7 @@ Gem::Specification.new do |s|
|
|
|
14
16
|
s.license = 'MIT'
|
|
15
17
|
s.test_files = s.files.grep(%r{^(test|spec|features)/})
|
|
16
18
|
s.require_paths = ['lib']
|
|
17
|
-
s.required_ruby_version = '~> 2.
|
|
19
|
+
s.required_ruby_version = '~> 2.3'
|
|
18
20
|
|
|
19
21
|
s.executables << 'cfndsl'
|
|
20
22
|
|
data/lib/cfndsl.rb
CHANGED
data/lib/cfndsl/aws/types.rb
CHANGED
data/lib/cfndsl/conditions.rb
CHANGED
data/lib/cfndsl/errors.rb
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
module CfnDsl
|
|
2
4
|
# Handles all external parameters
|
|
3
5
|
class ExternalParameters
|
|
@@ -46,7 +48,9 @@ module CfnDsl
|
|
|
46
48
|
|
|
47
49
|
def add_to_binding(bind, logstream)
|
|
48
50
|
parameters.each_pair do |key, val|
|
|
51
|
+
# rubocop:disable Style/SafeNavigation
|
|
49
52
|
logstream.puts("Setting local variable #{key} to #{val}") if logstream
|
|
53
|
+
# rubocop:enable Style/SafeNavigation
|
|
50
54
|
bind.eval "#{key} = #{val.inspect}"
|
|
51
55
|
end
|
|
52
56
|
end
|
data/lib/cfndsl/globals.rb
CHANGED
data/lib/cfndsl/jsonable.rb
CHANGED
data/lib/cfndsl/mappings.rb
CHANGED
data/lib/cfndsl/module.rb
CHANGED
data/lib/cfndsl/names.rb
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
require 'cfndsl/jsonable'
|
|
2
4
|
require 'cfndsl/names'
|
|
3
5
|
require 'cfndsl/aws/types'
|
|
@@ -121,7 +123,7 @@ module CfnDsl
|
|
|
121
123
|
|
|
122
124
|
return true if GLOBAL_REFS.key?(ref)
|
|
123
125
|
|
|
124
|
-
return true if @Parameters
|
|
126
|
+
return true if @Parameters&.key?(ref)
|
|
125
127
|
|
|
126
128
|
return !origin || !@_resource_refs || !@_resource_refs[ref] || !@_resource_refs[ref].key?(origin) if @Resources.key?(ref)
|
|
127
129
|
|
data/lib/cfndsl/os/types.rb
CHANGED
data/lib/cfndsl/outputs.rb
CHANGED
data/lib/cfndsl/parameters.rb
CHANGED
data/lib/cfndsl/patches.rb
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
module CfnDsl
|
|
2
4
|
# Module for handling inconsistencies in the published resource specification from AWS
|
|
3
5
|
# rubocop:disable Metrics/ModuleLength
|
|
@@ -117,6 +119,12 @@ module CfnDsl
|
|
|
117
119
|
'Key' => { 'PrimitiveType' => 'String' }
|
|
118
120
|
}
|
|
119
121
|
},
|
|
122
|
+
'AWS::EC2::CapacityReservation.Tag' => {
|
|
123
|
+
'Properties' => {
|
|
124
|
+
'Value' => { 'PrimitiveType' => 'String' },
|
|
125
|
+
'Key' => { 'PrimitiveType' => 'String' }
|
|
126
|
+
}
|
|
127
|
+
},
|
|
120
128
|
'AWS::DLM::LifecyclePolicy.Tag' => {
|
|
121
129
|
'Properties' => {
|
|
122
130
|
'Value' => { 'PrimitiveType' => 'String' },
|
|
@@ -129,6 +137,12 @@ module CfnDsl
|
|
|
129
137
|
'Key' => { 'PrimitiveType' => 'String' }
|
|
130
138
|
}
|
|
131
139
|
},
|
|
140
|
+
'AWS::EC2::ClientVpnEndpoint.Tag' => {
|
|
141
|
+
'Properties' => {
|
|
142
|
+
'Value' => { 'PrimitiveType' => 'String' },
|
|
143
|
+
'Key' => { 'PrimitiveType' => 'String' }
|
|
144
|
+
}
|
|
145
|
+
},
|
|
132
146
|
'AWS::Serverless::SimpleTable.PrimaryKey' => {
|
|
133
147
|
'Properties' => {
|
|
134
148
|
'Name' => { 'PrimitiveType' => 'String' },
|
data/lib/cfndsl/plurals.rb
CHANGED
data/lib/cfndsl/properties.rb
CHANGED
data/lib/cfndsl/rake_task.rb
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
require 'rake'
|
|
2
4
|
require 'rake/tasklib'
|
|
3
5
|
|
|
@@ -35,7 +37,7 @@ module CfnDsl
|
|
|
35
37
|
|
|
36
38
|
def log(opts)
|
|
37
39
|
type = opts[:output].nil? ? 'STDOUT' : opts[:output]
|
|
38
|
-
verbose
|
|
40
|
+
verbose&.puts("Writing to #{type}")
|
|
39
41
|
end
|
|
40
42
|
|
|
41
43
|
def outputter(opts)
|
|
@@ -45,7 +47,7 @@ module CfnDsl
|
|
|
45
47
|
def model(filename)
|
|
46
48
|
raise "#{filename} doesn't exist" unless File.exist?(filename)
|
|
47
49
|
|
|
48
|
-
verbose
|
|
50
|
+
verbose&.puts("using extras #{extra}")
|
|
49
51
|
CfnDsl.eval_file_with_extras(filename, extra, verbose)
|
|
50
52
|
end
|
|
51
53
|
|
data/lib/cfndsl/ref_check.rb
CHANGED
data/lib/cfndsl/resources.rb
CHANGED
data/lib/cfndsl/specification.rb
CHANGED
data/lib/cfndsl/types.rb
CHANGED
data/lib/cfndsl/update_policy.rb
CHANGED
data/lib/cfndsl/version.rb
CHANGED
data/lib/cfnlego.rb
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
# Cfnlego
|
|
2
4
|
module Cfnlego
|
|
3
5
|
# CloudFormation
|
|
4
6
|
class CloudFormation
|
|
5
|
-
TEMPLATE = "#{File.dirname(__FILE__)}/cloudformation.erb"
|
|
7
|
+
TEMPLATE = "#{File.dirname(__FILE__)}/cloudformation.erb"
|
|
6
8
|
|
|
7
9
|
attr_reader :resources
|
|
8
10
|
|
data/lib/cfnlego/resource.rb
CHANGED
data/lib/deep_merge/core.rb
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
# rubocop:disable Metrics/AbcSize, Metrics/BlockNesting, Metrics/CyclomaticComplexity, Metrics/MethodLength
|
|
2
4
|
# rubocop:disable Metrics/ModuleLength, Metrics/PerceivedComplexity, Style/IfInsideElse, Style/Semicolon
|
|
3
5
|
#
|
|
@@ -5,7 +7,7 @@
|
|
|
5
7
|
module DeepMerge
|
|
6
8
|
class InvalidParameter < StandardError; end
|
|
7
9
|
|
|
8
|
-
DEFAULT_FIELD_KNOCKOUT_PREFIX = '--'
|
|
10
|
+
DEFAULT_FIELD_KNOCKOUT_PREFIX = '--'
|
|
9
11
|
|
|
10
12
|
# Deep Merge core documentation.
|
|
11
13
|
# deep_merge! method permits merging of arbitrary child elements. The two top level
|
data/sample/autoscale.rb
CHANGED
data/sample/autoscale2.rb
CHANGED
data/sample/circular.rb
CHANGED
data/sample/codedeploy.rb
CHANGED
data/sample/config_service.rb
CHANGED
data/sample/ecs.rb
CHANGED
data/sample/export.rb
CHANGED
data/sample/iam_policies.rb
CHANGED
data/sample/import.rb
CHANGED
data/sample/lambda.rb
CHANGED
data/sample/s3.rb
CHANGED
data/sample/t1.rb
CHANGED
data/sample/vpc_example.rb
CHANGED
data/spec/aws/kms_alias_spec.rb
CHANGED
data/spec/aws/serverless_spec.rb
CHANGED
data/spec/cfndsl_spec.rb
CHANGED
data/spec/cli_spec.rb
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
require 'spec_helper'
|
|
2
4
|
|
|
3
|
-
WORKING_SPEC_VERSION = '2.19.0'
|
|
5
|
+
WORKING_SPEC_VERSION = '2.19.0'
|
|
4
6
|
|
|
5
7
|
describe 'cfndsl', type: :aruba do
|
|
6
8
|
let(:usage) do
|
|
@@ -48,6 +50,17 @@ describe 'cfndsl', type: :aruba do
|
|
|
48
50
|
end
|
|
49
51
|
end
|
|
50
52
|
|
|
53
|
+
context 'cfndsl -u' do
|
|
54
|
+
it 'updates the specification file' do
|
|
55
|
+
run_command 'cfndsl -u'
|
|
56
|
+
expect(last_command_started).to have_output_on_stderr(<<-OUTPUT.gsub(/^ {8}/, '').chomp)
|
|
57
|
+
Updating specification file
|
|
58
|
+
Specification successfully written to #{ENV['HOME']}/.cfndsl/resource_specification.json
|
|
59
|
+
OUTPUT
|
|
60
|
+
expect(last_command_started).to have_exit_status(0)
|
|
61
|
+
end
|
|
62
|
+
end
|
|
63
|
+
|
|
51
64
|
context 'cfndsl -a' do
|
|
52
65
|
it 'prints out the specification file version' do
|
|
53
66
|
run_command 'cfndsl -a'
|
|
@@ -162,13 +175,15 @@ describe 'cfndsl', type: :aruba do
|
|
|
162
175
|
|
|
163
176
|
it 'displays the variables as they are interpolated in the CloudFormation template' do
|
|
164
177
|
run_command_and_stop 'cfndsl template.rb --yaml params.yaml --verbose'
|
|
165
|
-
verbose =
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
178
|
+
verbose = %r{The creation of constants as config is deprecated!
|
|
179
|
+
Please switch to the #external_parameters method within your templates to access variables
|
|
180
|
+
See https://github.com/cfndsl/cfndsl/issues/170
|
|
181
|
+
Use the --disable-binding flag to suppress this message
|
|
182
|
+
Using specification file .*\.json
|
|
183
|
+
Loading YAML file .*params\.yaml
|
|
184
|
+
Setting local variable DESC to yaml
|
|
185
|
+
Loading template file .*template\.rb
|
|
186
|
+
Writing to STDOUT}
|
|
172
187
|
template = '{"AWSTemplateFormatVersion":"2010-09-09","Description":"yaml"}'
|
|
173
188
|
expect(last_command_started).to have_output_on_stderr(verbose)
|
|
174
189
|
expect(last_command_started).to have_output_on_stdout(template)
|
data/spec/deep_merge_spec.rb
CHANGED
data/spec/fixtures/heattest.rb
CHANGED
data/spec/fixtures/test.rb
CHANGED
data/spec/generate_spec.rb
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
# rubocop:disable Style/FrozenStringLiteralComment
|
|
1
2
|
require 'spec_helper'
|
|
2
3
|
describe Cfnlego do
|
|
3
4
|
let(:template) { Cfnlego.run(resources: ['AWS::EC2::EIP,EIP']) }
|
|
@@ -13,3 +14,4 @@ describe Cfnlego do
|
|
|
13
14
|
end
|
|
14
15
|
end
|
|
15
16
|
end
|
|
17
|
+
# rubocop:enable Style/FrozenStringLiteralComment
|
data/spec/heat_template_spec.rb
CHANGED
data/spec/jsonable_spec.rb
CHANGED
data/spec/metadata_spec.rb
CHANGED
data/spec/names_spec.rb
CHANGED
data/spec/output_spec.rb
CHANGED
data/spec/plurals_spec.rb
CHANGED
data/spec/resources_spec.rb
CHANGED
data/spec/spec_helper.rb
CHANGED
data/spec/transform_spec.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cfndsl
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.17.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Steven Jack
|
|
@@ -11,7 +11,7 @@ authors:
|
|
|
11
11
|
autorequire:
|
|
12
12
|
bindir: bin
|
|
13
13
|
cert_chain: []
|
|
14
|
-
date: 2019-
|
|
14
|
+
date: 2019-06-16 00:00:00.000000000 Z
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|
|
17
17
|
name: bundler
|
|
@@ -143,14 +143,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
143
143
|
requirements:
|
|
144
144
|
- - "~>"
|
|
145
145
|
- !ruby/object:Gem::Version
|
|
146
|
-
version: '2.
|
|
146
|
+
version: '2.3'
|
|
147
147
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
148
148
|
requirements:
|
|
149
149
|
- - ">="
|
|
150
150
|
- !ruby/object:Gem::Version
|
|
151
151
|
version: '0'
|
|
152
152
|
requirements: []
|
|
153
|
-
rubygems_version: 3.0.
|
|
153
|
+
rubygems_version: 3.0.4
|
|
154
154
|
signing_key:
|
|
155
155
|
specification_version: 4
|
|
156
156
|
summary: AWS Cloudformation DSL
|