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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 77c464a6ac76c7f5178cac5a8e7f03b55567fdc0878958a55d4855c3b04e956b
4
- data.tar.gz: 7ff44130767630f6f6cd889cb1ba878585e1913dde1ecca1b61cbf4b4899d100
3
+ metadata.gz: b4c0e7758496f288d64dad5ba85245f82805645950e9af2aceaf098d3eb0b62a
4
+ data.tar.gz: e0ea316e243b735c20e64f52de6a26f44b0ab3ee6ae38f807ef0d4cbe123cf80
5
5
  SHA512:
6
- metadata.gz: b445b6971da33ee4f7cf4e25eb099bdd314fcaa0616fd7acce582e19ddf6cc08656d861d6b5b7d08541444a3273fbdd54ce51a4397bc4656ddee9b99ecd2ccbd
7
- data.tar.gz: 9e9beaf6fd336e4d6e457f2641985bfe011f38fae8ff51715e36e56b7bc1e45a0a6e3f0af380034d2f23a235fbf4090e7cdb028dba92477c7d91dd196537328b
6
+ metadata.gz: a45969245092d9b836c04be93e17d2a30057b3e34a3afaf3763dbe8c437c16038d805d34198077927818cd6bdda47e4dcd480a624eba5939f6299ff717455748
7
+ data.tar.gz: a434c5c2d6af48700399e93a40db5e1641135ccd22b96ec31dbd2da668e52f102f6923676db545679330963acf7c565ea594b8053424a15222ef86baba86790c
@@ -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
@@ -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[Ufo.env] || {}
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"]
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
 
@@ -1,3 +1,3 @@
1
1
  module Ufo
2
- VERSION = "4.5.8"
2
+ VERSION = "4.5.9"
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: 4.5.8
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-18 00:00:00.000000000 Z
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