stove 3.2.5 → 3.2.6
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 +4 -0
- data/lib/stove/cookbook/metadata.rb +4 -0
- data/lib/stove/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 14e6b97b12766451d286f30909803c1c5a7bf56f
|
|
4
|
+
data.tar.gz: 20fdbce7e94c7bb0e2a53ce63b193751e351c9e1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 05df808d14a6d6b31bc1b1898963b20a88174e3ec09bb7315607ee17eeeb1329688c0aa81d39378859e2b6e015340a0fc22ea9f5f55a9745277b082de28183d7
|
|
7
|
+
data.tar.gz: 16765a9d38f934e7f8d97f80c097d1ae9d85b5c0c506e9f4eccf262e394c7ba138955739581efa875a56165e881c0d84b602fb8627dade640f2237f40ddb3a2e
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@ Stove CHANGELOG
|
|
|
2
2
|
===============
|
|
3
3
|
This is the Changelog for the Stove gem.
|
|
4
4
|
|
|
5
|
+
v3.2.6 (2015-03-18)
|
|
6
|
+
-------------------
|
|
7
|
+
- Include new metadata methods for Supermarket
|
|
8
|
+
|
|
5
9
|
v3.2.5 (2014-12-19)
|
|
6
10
|
-------------------
|
|
7
11
|
- Fix a bug with line endings when generating tarballs
|
|
@@ -104,6 +104,8 @@ module Stove
|
|
|
104
104
|
@cookbook = cookbook
|
|
105
105
|
@name = cookbook ? cookbook.name : ''
|
|
106
106
|
@long_description = ''
|
|
107
|
+
@source_url = Stove::Mash.new
|
|
108
|
+
@issues_url = Stove::Mash.new
|
|
107
109
|
@platforms = Stove::Mash.new
|
|
108
110
|
@dependencies = Stove::Mash.new
|
|
109
111
|
@recommendations = Stove::Mash.new
|
|
@@ -162,6 +164,8 @@ module Stove
|
|
|
162
164
|
'version' => self.version,
|
|
163
165
|
'description' => self.description,
|
|
164
166
|
'long_description' => self.long_description,
|
|
167
|
+
'source_url' => self.source_url,
|
|
168
|
+
'issues_url' => self.issues_url,
|
|
165
169
|
'maintainer' => self.maintainer,
|
|
166
170
|
'maintainer_email' => self.maintainer_email,
|
|
167
171
|
'license' => self.license,
|
data/lib/stove/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: stove
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.2.
|
|
4
|
+
version: 3.2.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Seth Vargo
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2015-03-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: chef-api
|
|
@@ -193,7 +193,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
193
193
|
version: '0'
|
|
194
194
|
requirements: []
|
|
195
195
|
rubyforge_project:
|
|
196
|
-
rubygems_version: 2.
|
|
196
|
+
rubygems_version: 2.4.5
|
|
197
197
|
signing_key:
|
|
198
198
|
specification_version: 4
|
|
199
199
|
summary: A command-line utility for releasing Chef community cookbooks
|