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 +4 -4
- data/CHANGELOG.md +4 -0
- data/README.md +8 -7
- data/lib/stove/cookbook/metadata.rb +3 -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: d3ef428f508059e005c170b50e007ea448d95184
|
4
|
+
data.tar.gz: df9a1982be3cb933dbcaa32314e78aa8fc8ebb83
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c3647a5ed6e7de9304e5cc157b840792c36b7a5fdee942c5ab355b4009f1724663bd66df0915c15473e79263e0c20d99cbc3907df03f4f771c30095af08548a6
|
7
|
+
data.tar.gz: d1ef86c49cd85c01cab9e1d30772ec8d950efd35164841449c5d937d2be5e10af841691f7537dec2ea9be58a65799a0cb1146dcd853b8d6664dfc0b303f8be2a
|
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.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
|
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.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-
|
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.
|
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
|