app_manifest 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -0
- data/lib/app_manifest.rb +2 -1
- data/lib/app_manifest/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 482dd448a7d1ae437d49fc7bae2a7640ccd6c7d3
|
4
|
+
data.tar.gz: b44903ec28588eb96b9c3bf24704a31d89dc31e1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 34cc854ad33c8b104dcf13c8841584d3aa9385d71923e7d245f675e6a7947a0d1b2e225465a6ef717bb849597206c8b4150192aedd95f21e7ae6ebe308434998
|
7
|
+
data.tar.gz: 8e75041bd9ebc1c00ec7f0259554873413b27e254dd0bb11a77d9a3273b92b33e278a8a99dec4ca8de601ae071ca54327a3daf9aee6729bd1fdc4f74453596f8
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,9 @@
|
|
1
|
+
Change Log
|
2
|
+
All notable changes to this project will be documented in this file.
|
3
|
+
|
4
|
+
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
5
|
+
and this project adheres to [Semantic Versioning](http://semver.org/).
|
6
|
+
|
7
|
+
## [0.1.1] - 2017-24-02
|
8
|
+
### Fixed
|
9
|
+
- Nested canonicalized nodes are now properly symbolized.
|
data/lib/app_manifest.rb
CHANGED
@@ -18,7 +18,8 @@ module AppManifest
|
|
18
18
|
# with canonical serialization. This will resolve shorthands and older
|
19
19
|
# serializations into a canonical serialization.
|
20
20
|
def canonicalize(manifest)
|
21
|
-
keys_to_sym(manifest)
|
21
|
+
manifest = keys_to_sym(manifest)
|
22
|
+
manifest
|
22
23
|
.merge(canonicalize_env(manifest))
|
23
24
|
.merge(canonicalize_formation(manifest))
|
24
25
|
.merge(canonicalize_addons(manifest))
|
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.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Owen Jacobson
|
@@ -78,6 +78,7 @@ extra_rdoc_files: []
|
|
78
78
|
files:
|
79
79
|
- ".gitignore"
|
80
80
|
- ".travis.yml"
|
81
|
+
- CHANGELOG.md
|
81
82
|
- Gemfile
|
82
83
|
- README.md
|
83
84
|
- Rakefile
|