app_manifest 0.2.0 → 0.2.1

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: 787b42d213ae05cc2f6fe59a405bcd430f4f33b0
4
- data.tar.gz: 16179fe7ada001700df468666df0ba7cc9f7a8a7
3
+ metadata.gz: '07832c80f5af96888eaf027f758789adbf3f79a5'
4
+ data.tar.gz: 908be879c0110a7c0739cff235536687fa6e834c
5
5
  SHA512:
6
- metadata.gz: fb94a91147cbdc5483f8d5ac5ccb615dfa116904f085fe78a3eea39239258077c26cba215604c09f6660a7aeb8f256d8c66dff107121c387f1ab90cb29fdbc9f
7
- data.tar.gz: 4f97267066ccaf7f7b874939298f584893a0439dceabfc50df59a03e7244ef8b753e0dbde08262fa6b1a331880e76c14ab8f2349305d5a25c6f44c3e676e03e0
6
+ metadata.gz: 3c1b7bdccc06899ce46bef23b268b1807b02e11a69768c4395683a6dba0b3ce25889b9fc30c87284236000270468f48fcbd7afeaaf47f3d9ad2614ac421af230
7
+ data.tar.gz: 26d2b46194b915ed316f373643059a7dfa4c55843816c04a2cadfa87d5b025739c18d8b17ba531cd750e8b73c0def9d298e541dcc1ee60dd84ff853db6ebde15
@@ -1,12 +1,17 @@
1
- Change Log
1
+ # Change Log
2
+
2
3
  All notable changes to this project will be documented in this file.
3
4
 
4
5
  The format is based on [Keep a Changelog](http://keepachangelog.com/)
5
6
  and this project adheres to [Semantic Versioning](http://semver.org/).
6
7
 
7
-
8
8
  ## Unreleased
9
- ## [0.2.0] = 2017-03-17
9
+
10
+ ## [0.2.1] - 2017-04-04
11
+ ### Fixed
12
+ - Prevent `NoMethodError on TrueClass` when a `true` or `false` environment variable is provided.
13
+
14
+ ## [0.2.0] - 2017-03-17
10
15
  ### Fixed
11
16
  - Addon keys are now deep symbolized.
12
17
  - Legacy formations are not rejected when keys are strings
@@ -36,7 +36,7 @@ module AppManifest
36
36
  canonicalize_key(manifest, :env) do |env|
37
37
  Hash[
38
38
  env.map do |key, value|
39
- if value.is_a? String
39
+ if value.is_a?(String) || [true, false].include?(value)
40
40
  value = {
41
41
  value: value,
42
42
  }
@@ -1,3 +1,3 @@
1
1
  module AppManifest
2
- VERSION = '0.2.0'.freeze
2
+ VERSION = '0.2.1'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: app_manifest
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Owen Jacobson
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2017-03-20 00:00:00.000000000 Z
12
+ date: 2017-04-04 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler
@@ -107,7 +107,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
107
107
  version: '0'
108
108
  requirements: []
109
109
  rubyforge_project:
110
- rubygems_version: 2.5.1
110
+ rubygems_version: 2.5.2
111
111
  signing_key:
112
112
  specification_version: 4
113
113
  summary: A library for parsing Heroku app manifests