app_manifest 0.4.0 → 0.5.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
- SHA1:
3
- metadata.gz: 1d9334534391c19ae6512f0e846455a89c0c39f5
4
- data.tar.gz: 1aebc1cea08efdaabefa137a7b8c9562b79b1ad3
2
+ SHA256:
3
+ metadata.gz: b6b1997f651202a310add9b15a8ddc70db29945f12ba0aacc9e6d3da32369655
4
+ data.tar.gz: cfa7514b3fc37fb0357c64377d3e715a1e2ae773f26d14cacd3240fcad255619
5
5
  SHA512:
6
- metadata.gz: 7d23f721193c7c8b5bec68e4153d34dbe2f36f93621a345918f3871480accfa97026e2b36cbab21d65e311256cd74cf556ca5fa1e661ada40936db10b5679371
7
- data.tar.gz: 87138fbbc3ebaf2da49b170494b164f0dc7dc450af70318146b532663a4de2b4dd7b1eae257d19523f0f46af816b2446d49d26165f593b7bc416e7d6e36650ca
6
+ metadata.gz: 899593b46897d0b55ff1b305a89c5194a35da55da4a7de38e63a80782ee12da28d8e18957c75ecd732aaf12003eccd1cd784a9f470fa03707af8512795592cc8
7
+ data.tar.gz: 8437a42ad77138fc4c25a6c3fc72015a7896c1b12b7a47a96581341095a2330aff4b7c1c33330afef1934b27a10c1a00180cc4f4c4f1008be9a25fda46c95d2f
@@ -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
@@ -22,5 +22,9 @@ module AppManifest
22
22
  global_data = to_hash
23
23
  Environment.new(global_data.merge(scoped_data))
24
24
  end
25
+
26
+ def environments?
27
+ !environments.nil?
28
+ end
25
29
  end
26
30
  end
@@ -1,3 +1,3 @@
1
1
  module AppManifest
2
- VERSION = '0.4.0'.freeze
2
+ VERSION = '0.5.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.4.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: 2017-11-28 00:00:00.000000000 Z
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.13
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