stove 3.2.2 → 3.2.3
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/README.md +0 -2
- data/features/support/env.rb +2 -1
- data/lib/stove/community.rb +1 -1
- data/lib/stove/packager.rb +1 -1
- data/lib/stove/version.rb +1 -1
- data/spec/integration/cookbook_spec.rb +0 -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: 913ba33a5cd3e9bc9b196fb2c9c683802b7b5b98
|
|
4
|
+
data.tar.gz: 5b867e1e95666d9d0116620b8a6b59a6b7ad5589
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ea92eacdd4ea99de7c48f7cf02990a6e2df31a46dd54bb5be51c0e51d925e9ba6920ba205eb0a0929ee91c4c6a5032f277d3bdefa74a9f3802689f20dba98a05
|
|
7
|
+
data.tar.gz: 259a5c28445baf9dd0b91626b18ea007ff9bb2ef8b2b0756b5e236d5bc4ed17663841dbd55a10e3c4e671299924b9c8c533b2844e393152464a09b18e17b541b
|
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.3 (2014-10-12)
|
|
6
|
+
-------------------
|
|
7
|
+
- Only upload fully-compiled metadata (i.e. only upload metadata.json, not metadata.rb)
|
|
8
|
+
|
|
5
9
|
v3.2.2 (2014-08-07)
|
|
6
10
|
-------------------
|
|
7
11
|
- Fix a bug where files beginning with a dot (`.`) were not packaged
|
data/README.md
CHANGED
|
@@ -4,13 +4,11 @@ Stove
|
|
|
4
4
|
[][travis]
|
|
5
5
|
[][gemnasium]
|
|
6
6
|
[][codeclimate]
|
|
7
|
-
[][gittip]
|
|
8
7
|
|
|
9
8
|
[gem]: https://rubygems.org/gems/stove
|
|
10
9
|
[travis]: http://travis-ci.org/sethvargo/stove
|
|
11
10
|
[gemnasium]: https://gemnasium.com/sethvargo/stove
|
|
12
11
|
[codeclimate]: https://codeclimate.com/github/sethvargo/stove
|
|
13
|
-
[gittip]: https://www.gittip.com/sethvargo
|
|
14
12
|
|
|
15
13
|
A utility for releasing and managing Chef Cookbooks. It will:
|
|
16
14
|
|
data/features/support/env.rb
CHANGED
|
@@ -9,7 +9,6 @@ Aruba.process = Aruba::InProcess
|
|
|
9
9
|
|
|
10
10
|
require 'community_zero/rspec'
|
|
11
11
|
CommunityZero::RSpec.start
|
|
12
|
-
Before { CommunityZero::RSpec.reset! }
|
|
13
12
|
|
|
14
13
|
require File.expand_path('../stove/git', __FILE__)
|
|
15
14
|
|
|
@@ -17,6 +16,8 @@ World(Aruba::Api)
|
|
|
17
16
|
World(Stove::Git)
|
|
18
17
|
|
|
19
18
|
Before do
|
|
19
|
+
CommunityZero::RSpec.reset!
|
|
20
|
+
|
|
20
21
|
Stove::Config.endpoint = CommunityZero::RSpec.url
|
|
21
22
|
Stove::Config.username = 'stove'
|
|
22
23
|
Stove::Config.key = File.expand_path('../stove.pem', __FILE__)
|
data/lib/stove/community.rb
CHANGED
|
@@ -56,7 +56,7 @@ module Stove
|
|
|
56
56
|
|
|
57
57
|
# This is for legacy, backwards-compatability reasons. The new
|
|
58
58
|
# Supermarket site does not require a category, but many of the testing
|
|
59
|
-
# tools still assume a cookbook category is present. We
|
|
59
|
+
# tools still assume a cookbook category is present. We just hardcode
|
|
60
60
|
# "Other" here.
|
|
61
61
|
'cookbook' => { 'category' => 'Other' }.to_json,
|
|
62
62
|
})
|
data/lib/stove/packager.rb
CHANGED
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.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Seth Vargo
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-10-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: chef-api
|