cloudformation-ruby-dsl 0.5.0 → 0.5.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
  SHA1:
3
- metadata.gz: 87bc41b96021aaa4708bc3fed727fea5197b646a
4
- data.tar.gz: 7cbb83021654a31310f32d52768addbc2fff5810
3
+ metadata.gz: 136b30b07166c41199b836ca01955ae5802bde26
4
+ data.tar.gz: aa047bfbdec4b38c0f3412ca8d9a94978493ba6e
5
5
  SHA512:
6
- metadata.gz: 76ab9cbc07eaf781bc1fbf91bcd51a7cc97832d1c7ebb61dd48830399623f87e5e4a83997f988bfdd16f04ebde318ff3d231cc935b0f00069e04309fc3a2f602
7
- data.tar.gz: b2d320eece6c4248e7f5da0ac51c7c5db6ee3528323858dde0e53e7a091be6e30246664e3c2239a4b2b3ff59fcd5fb21afc7eafbd379ff57fa48517e05e1b764
6
+ metadata.gz: 768328127126da0d6f7ef90400aa8a9916041c530fae8b64504888c7669ea0d6c98bb275aebd324f46e6298a3d276a8e8d5fe8f52a76bfa56fb3ece0fedeeb57
7
+ data.tar.gz: 0515089919cd33907c83614330684b4ae6225095e64c44243546704fba4905aca5c7b3041eb2e86d376204bf9ae875d9f310e8654c5d59e0882befe743ee829e
@@ -15,7 +15,7 @@
15
15
  module Cfn
16
16
  module Ruby
17
17
  module Dsl
18
- VERSION = "0.5.0"
18
+ VERSION = "0.5.1"
19
19
  end
20
20
  end
21
21
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cloudformation-ruby-dsl
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shawn Smith
@@ -85,7 +85,6 @@ email:
85
85
  - Tony.Cui@bazaarvoice.com
86
86
  executables:
87
87
  - cfntemplate-to-ruby
88
- - vendor-cfn-bin
89
88
  extensions: []
90
89
  extra_rdoc_files: []
91
90
  files:
@@ -95,7 +94,6 @@ files:
95
94
  - README.md
96
95
  - Rakefile
97
96
  - bin/cfntemplate-to-ruby
98
- - bin/vendor-cfn-bin
99
97
  - cloudformation-ruby-dsl.gemspec
100
98
  - examples/cloudformation-ruby-script.rb
101
99
  - examples/maps/map.json
data/bin/vendor-cfn-bin DELETED
@@ -1,6 +0,0 @@
1
- #!/usr/bin/env ruby
2
- # This script proxies the commands to service like cfn-cmd does, but in ruby so that gemstubs work
3
- vendor=File.expand_path('../../vendor/AWSCloudFormation-1.0.12',__FILE__)
4
- command=File.basename(__FILE__)
5
-
6
- exec "AWS_CLOUDFORMATION_HOME=#{vendor} SERVICE_HOME=#{vendor} #{vendor}/bin/#{command} \"#{ARGV.join('" "')}\""