app_manifest 0.4.0 → 0.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/CHANGELOG.md +6 -1
- data/lib/app_manifest/manifest.rb +4 -0
- data/lib/app_manifest/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: b6b1997f651202a310add9b15a8ddc70db29945f12ba0aacc9e6d3da32369655
|
4
|
+
data.tar.gz: cfa7514b3fc37fb0357c64377d3e715a1e2ae773f26d14cacd3240fcad255619
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 899593b46897d0b55ff1b305a89c5194a35da55da4a7de38e63a80782ee12da28d8e18957c75ecd732aaf12003eccd1cd784a9f470fa03707af8512795592cc8
|
7
|
+
data.tar.gz: 8437a42ad77138fc4c25a6c3fc72015a7896c1b12b7a47a96581341095a2330aff4b7c1c33330afef1934b27a10c1a00180cc4f4c4f1008be9a25fda46c95d2f
|
data/CHANGELOG.md
CHANGED
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|
7
7
|
|
8
8
|
## Unreleased
|
9
9
|
|
10
|
+
## [0.5.0] - 2018-07-24
|
11
|
+
|
12
|
+
### Added
|
13
|
+
- `Manifest#environments?` helper method to provide if `environments` data is populated.
|
14
|
+
|
10
15
|
## [0.4.0] - 2017-11-28
|
11
16
|
|
12
17
|
### Fixed
|
@@ -25,7 +30,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|
25
30
|
it's serialization will not include nested `environments` data.
|
26
31
|
|
27
32
|
### Removed
|
28
|
-
- `Manifest#manifest` was removed as it was superfluous and potentially
|
33
|
+
- `Manifest#manifest` was removed as it was superfluous and potentially
|
29
34
|
confusing. `Manifest#to_hash` may be a suitable replacement.
|
30
35
|
|
31
36
|
## [0.2.1] - 2017-04-04
|
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.5.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:
|
12
|
+
date: 2018-07-24 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: bundler
|
@@ -129,7 +129,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
129
129
|
version: '0'
|
130
130
|
requirements: []
|
131
131
|
rubyforge_project:
|
132
|
-
rubygems_version: 2.6
|
132
|
+
rubygems_version: 2.7.6
|
133
133
|
signing_key:
|
134
134
|
specification_version: 4
|
135
135
|
summary: A library for parsing Heroku app manifests
|