aws-spec-generator 0.1.2 → 0.1.3
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 +5 -1
- data/Gemfile.lock +1 -1
- data/lib/aws/spec/generator/version.rb +1 -1
- data/lib/aws_spec_generator.rb +5 -5
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fa333851ab3ce1309fde7719bb0b6e6ce85e876695ba013b31c142d117f7cf27
|
|
4
|
+
data.tar.gz: 7045d17ea6c1119dd7323ad5730a43e6d316551b01117c1a3254b150f8bfdec6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 12547865cbb2b8af4a0748bbce8ba3b30ee538055c54f4d8d7f69c487f2f7433e8049f036861d0db3d5ff31faac48d28eaef7812de09aa17c509847c35220853
|
|
7
|
+
data.tar.gz: ced40a06086f161bdacbccd47537e1407a5be03fe50eebc2b1df1b1c60f6393ecef61a723c00246d353b875a33de8da7870db5acc476e0050c9f386abafc3680
|
data/CHANGELOG.md
CHANGED
|
@@ -12,4 +12,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
12
12
|
|
|
13
13
|
## [0.1.2] - 04-12-2018
|
|
14
14
|
### removed
|
|
15
|
-
- Removed test files as this is tested in aws-spec-etl
|
|
15
|
+
- Removed test files as this is tested in aws-spec-etl
|
|
16
|
+
|
|
17
|
+
## [0.1.3] - 04-12-2018
|
|
18
|
+
### Changed
|
|
19
|
+
- relative path of spechelper require statement
|
data/Gemfile.lock
CHANGED
data/lib/aws_spec_generator.rb
CHANGED
|
@@ -41,7 +41,7 @@ class AwsSpecGenerator
|
|
|
41
41
|
@output_directory + "ec2_on_#{vpc}_tests_spec.rb"
|
|
42
42
|
)
|
|
43
43
|
File.open(target_file, 'w') do |f|
|
|
44
|
-
f.write("require_relative '
|
|
44
|
+
f.write("require_relative '../../spec_helper'\n\ncontext '#{vpc} tests', #{account}: true do\n\n")
|
|
45
45
|
end
|
|
46
46
|
|
|
47
47
|
begin
|
|
@@ -63,7 +63,7 @@ class AwsSpecGenerator
|
|
|
63
63
|
@output_directory + "elbs_on_#{vpc}_tests_spec.rb"
|
|
64
64
|
)
|
|
65
65
|
File.open(target_file, 'w') do |f|
|
|
66
|
-
f.write("require_relative '
|
|
66
|
+
f.write("require_relative '../../spec_helper'\n\ncontext 'ELBs on"\
|
|
67
67
|
" #{vpc} tests', #{account}: true do\n\n")
|
|
68
68
|
end
|
|
69
69
|
|
|
@@ -86,7 +86,7 @@ class AwsSpecGenerator
|
|
|
86
86
|
@output_directory + "security_groups_on_#{vpc}_tests_spec.rb"
|
|
87
87
|
)
|
|
88
88
|
File.open(target_file, 'w') do |f|
|
|
89
|
-
f.write("require_relative '
|
|
89
|
+
f.write("require_relative '../../spec_helper'\n\ncontext 'Security Groups on"\
|
|
90
90
|
" #{vpc} tests', #{account}: true do\n\n")
|
|
91
91
|
end
|
|
92
92
|
|
|
@@ -112,7 +112,7 @@ class AwsSpecGenerator
|
|
|
112
112
|
|
|
113
113
|
File.open(target_file, 'w') do |f|
|
|
114
114
|
f.write(
|
|
115
|
-
"require_relative '
|
|
115
|
+
"require_relative '../../spec_helper'\n\ncontext 'S3 buckets on"\
|
|
116
116
|
" #{bucket['Name']} tests', #{account}: true do\n\n"
|
|
117
117
|
)
|
|
118
118
|
end
|
|
@@ -137,7 +137,7 @@ class AwsSpecGenerator
|
|
|
137
137
|
)
|
|
138
138
|
File.open(target_file, 'w') do |f|
|
|
139
139
|
f.write(
|
|
140
|
-
"require_relative '
|
|
140
|
+
"require_relative '../../spec_helper'\n\ncontext 'NACL "\
|
|
141
141
|
"on #{vpc} tests', #{account}: true do\n\n"
|
|
142
142
|
)
|
|
143
143
|
end
|