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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 465d414ee054ca33e9ea585cefd724cc3b18f894
4
- data.tar.gz: 7572e3dbd1fd4e3a29910b1c298cb4761febf4d8
3
+ metadata.gz: 913ba33a5cd3e9bc9b196fb2c9c683802b7b5b98
4
+ data.tar.gz: 5b867e1e95666d9d0116620b8a6b59a6b7ad5589
5
5
  SHA512:
6
- metadata.gz: 4babffd121fa144d835893e08c45a89a56f289ce502a75d09ce063d14ba323144ccafd82976d05c14e942e5dae14ffd99d6d13befeb9f16e2e4906e594ea1461
7
- data.tar.gz: c182e022b0e701759cbf69acc035bb69e37f98487b587a0e488fe3e98926e05a72866193e3559a35358e9afce2b51772ef5cb2dfd8202a394f9176b54331acdc
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
  [![Build Status](http://img.shields.io/travis/sethvargo/stove.svg)][travis]
5
5
  [![Dependency Status](http://img.shields.io/gemnasium/sethvargo/stove.svg)][gemnasium]
6
6
  [![Code Climate](http://img.shields.io/codeclimate/github/sethvargo/stove.svg)][codeclimate]
7
- [![Gittip](http://img.shields.io/gittip/sethvargo.svg)][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
 
@@ -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__)
@@ -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 juse hardcode
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
  })
@@ -10,7 +10,7 @@ module Stove
10
10
  ACCEPTABLE_FILES = [
11
11
  'README.*',
12
12
  'CHANGELOG.*',
13
- 'metadata.{json,rb}',
13
+ 'metadata.json',
14
14
  'attributes/*.rb',
15
15
  'definitions/*.rb',
16
16
  'files/**/*',
data/lib/stove/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Stove
2
- VERSION = '3.2.2'
2
+ VERSION = '3.2.3'
3
3
  end
@@ -27,7 +27,6 @@ module Stove
27
27
  basic/files/default/patch.txt
28
28
  basic/libraries/magic.rb
29
29
  basic/metadata.json
30
- basic/metadata.rb
31
30
  basic/providers/thing.rb
32
31
  basic/recipes/default.rb
33
32
  basic/recipes/system.rb
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.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-08-07 00:00:00.000000000 Z
11
+ date: 2014-10-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: chef-api