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 +4 -4
- data/CHANGELOG.md +7 -3
- data/lib/app_manifest.rb +2 -1
- data/lib/app_manifest/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 787b42d213ae05cc2f6fe59a405bcd430f4f33b0
|
|
4
|
+
data.tar.gz: 16179fe7ada001700df468666df0ba7cc9f7a8a7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fb94a91147cbdc5483f8d5ac5ccb615dfa116904f085fe78a3eea39239258077c26cba215604c09f6660a7aeb8f256d8c66dff107121c387f1ab90cb29fdbc9f
|
|
7
|
+
data.tar.gz: 4f97267066ccaf7f7b874939298f584893a0439dceabfc50df59a03e7244ef8b753e0dbde08262fa6b1a331880e76c14ab8f2349305d5a25c6f44c3e676e03e0
|
data/CHANGELOG.md
CHANGED
|
@@ -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
|
|
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
|
|
18
|
+
## [0.1.1] - 2017-02-24
|
|
15
19
|
### Fixed
|
|
16
20
|
- Nested canonicalized nodes are now properly symbolized.
|
data/lib/app_manifest.rb
CHANGED
|
@@ -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
|
data/lib/app_manifest/version.rb
CHANGED
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.
|
|
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-
|
|
12
|
+
date: 2017-03-20 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: bundler
|