ufo 4.5.8 → 4.5.9
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 +3 -0
- data/lib/ufo/core.rb +4 -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: b4c0e7758496f288d64dad5ba85245f82805645950e9af2aceaf098d3eb0b62a
|
|
4
|
+
data.tar.gz: e0ea316e243b735c20e64f52de6a26f44b0ab3ee6ae38f807ef0d4cbe123cf80
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a45969245092d9b836c04be93e17d2a30057b3e34a3afaf3763dbe8c437c16038d805d34198077927818cd6bdda47e4dcd480a624eba5939f6299ff717455748
|
|
7
|
+
data.tar.gz: a434c5c2d6af48700399e93a40db5e1641135ccd22b96ec31dbd2da668e52f102f6923676db545679330963acf7c565ea594b8053424a15222ef86baba86790c
|
data/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,9 @@
|
|
|
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
|
+
## [4.5.9]
|
|
7
|
+
- fix ufo_env aws_profile tight binding
|
|
8
|
+
|
|
6
9
|
## [4.5.8]
|
|
7
10
|
- #91 added helper scripts to dianose and resolve the SSL issues - added docs to help explain and save the user time and research
|
|
8
11
|
- improve cancel command
|
data/lib/ufo/core.rb
CHANGED
|
@@ -42,10 +42,10 @@ module Ufo
|
|
|
42
42
|
return if ENV['TEST']
|
|
43
43
|
return unless File.exist?("#{Ufo.root}/.ufo/settings.yml") # for rake docs
|
|
44
44
|
return unless settings # Only load if within Ufo project and there's a settings.yml
|
|
45
|
-
data = settings
|
|
46
|
-
if data[
|
|
47
|
-
puts "Using AWS_PROFILE=#{data[
|
|
48
|
-
ENV['AWS_PROFILE'] = data[
|
|
45
|
+
data = settings || {}
|
|
46
|
+
if data[:aws_profile]
|
|
47
|
+
puts "Using AWS_PROFILE=#{data[:aws_profile]} from UFO_ENV=#{Ufo.env} in config/settings.yml"
|
|
48
|
+
ENV['AWS_PROFILE'] = data[:aws_profile]
|
|
49
49
|
end
|
|
50
50
|
end
|
|
51
51
|
|
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: 4.5.
|
|
4
|
+
version: 4.5.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tung Nguyen
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-10-
|
|
11
|
+
date: 2019-10-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-cloudformation
|