figaro2eb 0.0.2 → 0.0.3

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
  SHA1:
3
- metadata.gz: 63332cd31587acf635ecf0606de1715570c87272
4
- data.tar.gz: a0ae94554b829a7b56035cf36c7d00be80995041
3
+ metadata.gz: 885bf0db819790b6a801c91e9c189d64dcc58a7b
4
+ data.tar.gz: ccd47c8baabfdd87e0e99b88904338dc9e81c781
5
5
  SHA512:
6
- metadata.gz: ced6089da9d5e857fb6f9a16188b4e9c1ca691c3f532cf768fd85b99f2361b1f388d7f25ea459c6bc4a79d6aa6793b02eb76f7ca3fecbdd5ef699544a7bb0776
7
- data.tar.gz: 9ae80a36f86b991a6795416fc11065263842b4fa0a122f2a500667f67135e5410f6eac916ee10850baf9e8d26339a1ebeb108ffb0af1c1806d3b8f8c604a4cbb
6
+ metadata.gz: 603571493a95ba6ce1d39155a8a749573e232b9a529315fd618f4652c90b5553640bc20f6321f163422231c6de670ed48299d8724d17dedcdb725b45e65a33b0
7
+ data.tar.gz: 5cebe85a2ecdde67f4645bf4b172dc97a8e25d27cc361e167cf7bd549135079ddad35f59bbd282b0a3832c5e5102b52ea04b25819aebc31bfbdaa247d4863545
data/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # Figaro2eb
2
2
 
3
+ [![Gem Version](https://badge.fury.io/rb/figaro2eb.svg)](http://badge.fury.io/rb/figaro2eb)
4
+
3
5
  Generates a shell script from Figaro's application.yml to set environment variables on an Elastic Beanstalk instance.
4
6
 
5
7
  ## Installation
@@ -1,3 +1,3 @@
1
1
  module Figaro2eb
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
data/lib/figaro2eb.rb CHANGED
@@ -88,7 +88,7 @@ module Figaro2eb
88
88
  end
89
89
 
90
90
  def check_if_value_empty key, value
91
- if value.empty?
91
+ if value.is_a?(String) && value.empty?
92
92
  puts "The value of #{key} is empty. You will have to manually add this to the EB configuration."
93
93
  end
94
94
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: figaro2eb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Kerr
@@ -53,7 +53,6 @@ files:
53
53
  - README.md
54
54
  - Rakefile
55
55
  - bin/figaro2eb
56
- - figaro2eb-0.0.1.gem
57
56
  - figaro2eb.gemspec
58
57
  - lib/figaro2eb.rb
59
58
  - lib/figaro2eb/version.rb
data/figaro2eb-0.0.1.gem DELETED
Binary file