app_manifest 0.1.2 → 0.2.0

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: 8a1e0b5beb0340e7e5c71a842a1775ebddb740dc
4
- data.tar.gz: 445de1e8593fdd7ca57947955655f0dedf13084a
3
+ metadata.gz: 787b42d213ae05cc2f6fe59a405bcd430f4f33b0
4
+ data.tar.gz: 16179fe7ada001700df468666df0ba7cc9f7a8a7
5
5
  SHA512:
6
- metadata.gz: 87b12d728d8337f0a0e6fe124b7c6d8ae5f2fef8ed260de78e535f36d806689723c397f6904d6146ac3253cd8fd19ab22e59cd14f99f292e1e98415dbae69d8c
7
- data.tar.gz: 72e3e27d68bad5273c3ae925a39d098e31cab7d6d2eb7041e8d305a7bdf6ff79432a7e1cd8aaa885a9ca868f155d97cae7f6fefc36a11f278bbea0d17c7a745c
6
+ metadata.gz: fb94a91147cbdc5483f8d5ac5ccb615dfa116904f085fe78a3eea39239258077c26cba215604c09f6660a7aeb8f256d8c66dff107121c387f1ab90cb29fdbc9f
7
+ data.tar.gz: 4f97267066ccaf7f7b874939298f584893a0439dceabfc50df59a03e7244ef8b753e0dbde08262fa6b1a331880e76c14ab8f2349305d5a25c6f44c3e676e03e0
@@ -1,16 +1,20 @@
1
1
  Change Log
2
2
  All notable changes to this project will be documented in this file.
3
3
 
4
- The format is based on [Keep a Changelog](http://keepachangelog.com/)
4
+ The format is based on [Keep a Changelog](http://keepachangelog.com/)
5
5
  and this project adheres to [Semantic Versioning](http://semver.org/).
6
6
 
7
7
 
8
8
  ## Unreleased
9
+ ## [0.2.0] = 2017-03-17
10
+ ### Fixed
11
+ - Addon keys are now deep symbolized.
12
+ - Legacy formations are not rejected when keys are strings
9
13
 
10
- ## [0.1.2] - 2017-27-02
14
+ ## [0.1.2] - 2017-02-27
11
15
  ### Fixed
12
16
  - Reject legacy formations from canonicalized where process is not defined.
13
17
 
14
- ## [0.1.1] - 2017-24-02
18
+ ## [0.1.1] - 2017-02-24
15
19
  ### Fixed
16
20
  - Nested canonicalized nodes are now properly symbolized.
@@ -57,6 +57,7 @@ module AppManifest
57
57
  if formation.is_a? Array
58
58
  Hash[
59
59
  formation
60
+ .map { |entry| keys_to_sym(entry) }
60
61
  .reject { |entry| entry[:process].to_s.empty? }
61
62
  .map do |entry|
62
63
  process = entry.fetch(:process)
@@ -83,7 +84,7 @@ module AppManifest
83
84
  plan: entry,
84
85
  }
85
86
  else
86
- entry
87
+ keys_to_sym(entry)
87
88
  end
88
89
  end
89
90
  end
@@ -1,3 +1,3 @@
1
1
  module AppManifest
2
- VERSION = '0.1.2'.freeze
2
+ VERSION = '0.2.0'.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.1.2
4
+ version: 0.2.0
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-02-27 00:00:00.000000000 Z
12
+ date: 2017-03-20 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler