ufo 6.1.0 → 6.1.1
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 -0
- data/lib/ufo/cli/help.rb +0 -3
- data/lib/ufo/config.rb +2 -4
- data/lib/ufo/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b5020109f777d82ca7e1d2c85acfd6c5fe91b4501a3b78892160a8c9783c129c
|
|
4
|
+
data.tar.gz: 0c5868cba614746690366be6512b33c5cc272d16d5a0ac0529933bebf83b28c3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 98130a5759ba72f0a6ce637607ba4b67814fb8822f735f679de8ea6b82204e17eb2943329e39f33265833373627a36dedb9adb1f555999220eb814e7c28dc3c5
|
|
7
|
+
data.tar.gz: 64f93d8b076e60f301b5e848e0e1f860d91bed832ecffedb5c95a93b1df743b2853049ec84d9d9995a16df222a6f9930fdb2026d9d3d24e784d20900b3f06208
|
data/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,11 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
This project *tries* to adhere to [Semantic Versioning](http://semver.org/), even before v1.0.
|
|
5
5
|
|
|
6
|
+
## [6.1.1] - 2022-03-14
|
|
7
|
+
- [#146](https://github.com/tongueroo/ufo/pull/146) dont set default vpc explicitly, instead use implicit setting
|
|
8
|
+
- [#147](https://github.com/tongueroo/ufo/pull/147) explicitly set default vpc when not set cloudformation resources expect it
|
|
9
|
+
- clean up debugging puts in cli help
|
|
10
|
+
|
|
6
11
|
## [6.1.0] - 2022-03-11
|
|
7
12
|
- [#136](https://github.com/tongueroo/ufo/pull/136) ufo central: dont load config
|
|
8
13
|
- [#137](https://github.com/tongueroo/ufo/pull/137) ufo new boot_hook generator
|
data/lib/ufo/cli/help.rb
CHANGED
|
@@ -18,13 +18,10 @@ class Ufo::CLI
|
|
|
18
18
|
list.sort! { |a, b| a[0] <=> b[0] }
|
|
19
19
|
filter = Proc.new do |command, desc|
|
|
20
20
|
command = command.sub(/ --.*/,'')
|
|
21
|
-
puts "command #{command.inspect}".color(:yellow)
|
|
22
21
|
detected = main_commands.detect do |c|
|
|
23
22
|
expr = "^ufo #{c}$"
|
|
24
|
-
puts "expr #{expr}"
|
|
25
23
|
command =~ Regexp.new(expr)
|
|
26
24
|
end
|
|
27
|
-
puts "detected #{detected.inspect}"
|
|
28
25
|
detected
|
|
29
26
|
end
|
|
30
27
|
main = list.select(&filter)
|
data/lib/ufo/config.rb
CHANGED
|
@@ -187,14 +187,12 @@ module Ufo
|
|
|
187
187
|
add_ext!(paths)
|
|
188
188
|
end
|
|
189
189
|
|
|
190
|
-
|
|
191
|
-
ext = "rb"
|
|
190
|
+
def add_ext!(paths)
|
|
192
191
|
paths.map! do |path|
|
|
193
192
|
path = path.sub(/\/$/,'') if path.ends_with?('/')
|
|
194
193
|
"#{path}.rb"
|
|
195
194
|
end
|
|
196
195
|
paths
|
|
197
196
|
end
|
|
198
|
-
|
|
199
|
-
end
|
|
197
|
+
end
|
|
200
198
|
end
|
data/lib/ufo/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ufo
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 6.1.
|
|
4
|
+
version: 6.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tung Nguyen
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-03-
|
|
11
|
+
date: 2022-03-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-logs
|