ufo 6.1.0 → 6.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4394550f855c4e125e7bbcd6e62d4eee7fe5720c48037201cc66fcba19013d36
4
- data.tar.gz: 1b3d1f7ef2b040bc3bbe2ec7815b7da0a5d5e366b8906bf8d997d57cd8193ad5
3
+ metadata.gz: b5020109f777d82ca7e1d2c85acfd6c5fe91b4501a3b78892160a8c9783c129c
4
+ data.tar.gz: 0c5868cba614746690366be6512b33c5cc272d16d5a0ac0529933bebf83b28c3
5
5
  SHA512:
6
- metadata.gz: 5ca6d18a47212fbfd9beba2dcdc130d1341f5c3f50bd9a27396150828217ed61e44d885e9fd83904b5029822a89585e089288567fb931e1497765c9a74b443cc
7
- data.tar.gz: 85afc2fb866da1a8de2aab7d10f942248706088adc10fda04cd23b537dc5d2fe21779ee11337b4f324cc4c57b41a8d6ce6996dc070d3a9508028f7525c4bf1e4
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
- def add_ext!(paths)
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
@@ -1,3 +1,3 @@
1
1
  module Ufo
2
- VERSION = "6.1.0"
2
+ VERSION = "6.1.1"
3
3
  end
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.0
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 00:00:00.000000000 Z
11
+ date: 2022-03-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-logs