wombat-cli 0.4.2 → 0.4.3

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
  SHA1:
3
- metadata.gz: 1d2420256c659c07c9b6eac6c2aeafd3ce3e652d
4
- data.tar.gz: 8596995d415cce245be8a74a2acb9c809ccbec88
3
+ metadata.gz: 6545dfabe00be3f65594a04258d0a6065c497938
4
+ data.tar.gz: 47a9335fc3ae579c4689768a04f4ce120cc25ed5
5
5
  SHA512:
6
- metadata.gz: 4afd53bb11bd8bb855718812b5def7eca4980ffd524929a71cecfe027a7d71247496620694be9792e53a7194de231a0c68cb23e756845f97bcfa49e7bbc2f733
7
- data.tar.gz: 0c7fae5967b652238f15e8679c6811bbe0837a9140ad79cc02f3c6ba732c15be8f7a9f371b4574df65787c5f9f721779b631f1d55727f7f46b1061dd33bcff75
6
+ metadata.gz: 2d127444db4748f14a203026ad4253fc80dc40e5abdf054193800e442529a8520753d08db73aaf30900447ddb3f92e069b63a527106c09d0ce5ff86dff193238
7
+ data.tar.gz: 52e0b865d6a0c0e37e8fd7d06f1cae9ca5c29bbb59850cc663d300886672bd8c296b162bb55f99f16aaa26f6f23f41015edc98751a42efec94387dac93d82a9b
data/CHANGELOG.md CHANGED
@@ -1,11 +1,18 @@
1
1
  # Change Log
2
2
 
3
+ ## [v0.4.3](https://github.com/chef-cft/wombat/tree/v0.4.3) (2017-02-23)
4
+ [Full Changelog](https://github.com/chef-cft/wombat/compare/v0.4.2...v0.4.3)
5
+
6
+ **Merged pull requests:**
7
+
8
+ - More aws namespace fixes, unblocked bjc outputs [\#304](https://github.com/chef-cft/wombat/pull/304) ([binamov](https://github.com/binamov))
9
+
3
10
  ## [v0.4.2](https://github.com/chef-cft/wombat/tree/v0.4.2) (2017-02-23)
4
11
  [Full Changelog](https://github.com/chef-cft/wombat/compare/v0.4.1...v0.4.2)
5
12
 
6
13
  **Merged pull requests:**
7
14
 
8
- - Fixed aws namespace, unblocked bjc deploys [\#302](https://github.com/chef-cft/wombat/pull/302) [binamov](https://github.com/binamov)
15
+ - Fixed aws namespace, unblocked bjc deploys [\#302](https://github.com/chef-cft/wombat/pull/302) ([binamov](https://github.com/binamov))
9
16
 
10
17
  ## [v0.4.1](https://github.com/chef-cft/wombat/tree/v0.4.1) (2017-02-23)
11
18
  [Full Changelog](https://github.com/chef-cft/wombat/compare/v0.4.0...v0.4.1)
data/lib/wombat/output.rb CHANGED
@@ -28,7 +28,7 @@ module Wombat
28
28
  private
29
29
 
30
30
  def cfn_workstation_ips(stack)
31
- ec2 = Aws::EC2::Resource.new
31
+ ec2 = ::Aws::EC2::Resource.new
32
32
  instances = cfn_stack_instances(stack)
33
33
  instances.each do |name, id|
34
34
  instance = ec2.instance(id)
@@ -39,9 +39,9 @@ module Wombat
39
39
  end
40
40
 
41
41
  def cfn_stack_instances(stack)
42
- cfn = Aws::CloudFormation::Client.new
42
+ cfn = ::Aws::CloudFormation::Client.new
43
43
  resp = cfn.describe_stack_resources({
44
- stack_name: stack,
44
+ stack_name: stack
45
45
  })
46
46
 
47
47
  instances = {}
@@ -1,3 +1,3 @@
1
1
  module Wombat
2
- VERSION = "0.4.2"
2
+ VERSION = "0.4.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wombat-cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.2
4
+ version: 0.4.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andre Elizondo