stove 3.2.3 → 3.2.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 913ba33a5cd3e9bc9b196fb2c9c683802b7b5b98
4
- data.tar.gz: 5b867e1e95666d9d0116620b8a6b59a6b7ad5589
3
+ metadata.gz: d3ef428f508059e005c170b50e007ea448d95184
4
+ data.tar.gz: df9a1982be3cb933dbcaa32314e78aa8fc8ebb83
5
5
  SHA512:
6
- metadata.gz: ea92eacdd4ea99de7c48f7cf02990a6e2df31a46dd54bb5be51c0e51d925e9ba6920ba205eb0a0929ee91c4c6a5032f277d3bdefa74a9f3802689f20dba98a05
7
- data.tar.gz: 259a5c28445baf9dd0b91626b18ea007ff9bb2ef8b2b0756b5e236d5bc4ed17663841dbd55a10e3c4e671299924b9c8c533b2844e393152464a09b18e17b541b
6
+ metadata.gz: c3647a5ed6e7de9304e5cc157b840792c36b7a5fdee942c5ab355b4009f1724663bd66df0915c15473e79263e0c20d99cbc3907df03f4f771c30095af08548a6
7
+ data.tar.gz: d1ef86c49cd85c01cab9e1d30772ec8d950efd35164841449c5d937d2be5e10af841691f7537dec2ea9be58a65799a0cb1146dcd853b8d6664dfc0b303f8be2a
@@ -2,6 +2,10 @@ Stove CHANGELOG
2
2
  ===============
3
3
  This is the Changelog for the Stove gem.
4
4
 
5
+ v3.2.4 (2014-12-07)
6
+ -------------------
7
+ - Add support for `issues_url` and `source_url` metadata attributes
8
+
5
9
  v3.2.3 (2014-10-12)
6
10
  -------------------
7
11
  - Only upload fully-compiled metadata (i.e. only upload metadata.json, not metadata.rb)
data/README.md CHANGED
@@ -1,14 +1,10 @@
1
1
  Stove
2
2
  =====
3
- [![Gem Version](http://img.shields.io/gem/v/stove.svg)][gem]
4
- [![Build Status](http://img.shields.io/travis/sethvargo/stove.svg)][travis]
5
- [![Dependency Status](http://img.shields.io/gemnasium/sethvargo/stove.svg)][gemnasium]
6
- [![Code Climate](http://img.shields.io/codeclimate/github/sethvargo/stove.svg)][codeclimate]
3
+ [![Gem Version](http://img.shields.io/gem/v/stove.svg?style=flat-square)][gem]
4
+ [![Build Status](http://img.shields.io/travis/sethvargo/stove.svg?style=flat-square)][travis]
7
5
 
8
6
  [gem]: https://rubygems.org/gems/stove
9
7
  [travis]: http://travis-ci.org/sethvargo/stove
10
- [gemnasium]: https://gemnasium.com/sethvargo/stove
11
- [codeclimate]: https://codeclimate.com/github/sethvargo/stove
12
8
 
13
9
  A utility for releasing and managing Chef Cookbooks. It will:
14
10
 
@@ -40,7 +36,7 @@ Stove requires your username and private key to upload a cookbook. You can pass
40
36
  $ stove login --username sethvargo --key ~/.chef/sethvargo.pem
41
37
  ```
42
38
 
43
- These values will be saved in Stove's configuration file and persisted across your workstation.
39
+ These values will be saved in Stove's configuration file (`~/.stove`) and persisted across your workstation.
44
40
 
45
41
  The default publishing endpoint is the [Chef Supermarket](https://supermarket.getchef.com), but this is configurable. If you want to publish to an internal community site, you can specify the `--endpoint` value:
46
42
 
@@ -48,6 +44,11 @@ The default publishing endpoint is the [Chef Supermarket](https://supermarket.ge
48
44
  $ stove --endpoint https://internal-cookbook-store.example.com
49
45
  ```
50
46
 
47
+ or for a private supermarket using the [supermarket](https://supermarket.getchef.com/cookbooks/supermarket) cookbook:
48
+
49
+ ```bash
50
+ $ stove --endpoint https://internal-cookbook-store.example.com/api/v1
51
+ ```
51
52
 
52
53
  Usage
53
54
  -----
@@ -72,6 +72,9 @@ module Stove
72
72
  def_attribute :description
73
73
  def_attribute :long_description
74
74
 
75
+ def_attribute :source_url
76
+ def_attribute :issues_url
77
+
75
78
  def_meta_cookbook :supports, :platforms
76
79
  def_meta_cookbook :depends, :dependencies
77
80
  def_meta_cookbook :recommends, :recommendations
@@ -1,3 +1,3 @@
1
1
  module Stove
2
- VERSION = '3.2.3'
2
+ VERSION = '3.2.4'
3
3
  end
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.3
4
+ version: 3.2.4
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-10-12 00:00:00.000000000 Z
11
+ date: 2014-12-08 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.3.0
196
+ rubygems_version: 2.2.2
197
197
  signing_key:
198
198
  specification_version: 4
199
199
  summary: A command-line utility for releasing Chef community cookbooks