stove 3.2.8 → 4.0.0

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: d1321201c0ae5405d1c8a7a2ff1fce2e5d9a8777
4
- data.tar.gz: 91c2389af99096b58e475e04336fd9e167db1daa
3
+ metadata.gz: f8523b3a26a8c2df2b1db61f884976dff941ccd6
4
+ data.tar.gz: 35b2772379fa8aa342ea127044c8b49a2f4b19c5
5
5
  SHA512:
6
- metadata.gz: e49d40340be589603949541d819dd0c69eaf3112b38c33f96da174a18fdc3fc0c4e02b7ede71364b923c25d530b2d9b6f7062e074984da2a3ad8a180d6034f17
7
- data.tar.gz: 2d3558666277963543bfc65ceabe70765fabcd52edcf2c8fedc0db1ceea570f0005cde5c1751a65b870ec274ada11a4669871cf04969dc5f5a78a630a5bbec5f
6
+ metadata.gz: 94696e97b331ed3be0e81843e072b830ef0ddd6c4408fcd729eef208fae383694edc83282d5ed618b1fb4541ddcc9e24f1eefd3dd62e26773718b4ec8eebadd6
7
+ data.tar.gz: 0916263e890e2947b6cdf5f67e88810f61d1e7d84c42c560d440d832739cea4527b142c9549484ac9b40169ee24c680304b89b5203a0798fbb79b73b024a04de
data/.travis.yml CHANGED
@@ -3,10 +3,10 @@ cache: bundler
3
3
  sudo: false
4
4
 
5
5
  rvm:
6
- - 1.9.3
7
6
  - 2.0.0
8
7
  - 2.1
9
8
  - 2.2
9
+ - 2.3.0
10
10
 
11
11
  branches:
12
12
  only:
data/CHANGELOG.md CHANGED
@@ -1,58 +1,61 @@
1
- Stove CHANGELOG
2
- ===============
1
+ # Stove CHANGELOG
2
+
3
3
  This is the Changelog for the Stove gem.
4
4
 
5
- v3.2.8 (2015-11-19)
6
- -------------------
5
+ ## v4.0.0 (2016-05-05)
6
+
7
+ - This version of stove now requires Ruby 2.0 or later
8
+
9
+ ## v3.2.8 (2015-11-19)
10
+
7
11
  - Add endpoint config to the .stove config file for users of private Supermarkets
8
12
  - Add option --no-ssl-verify to skip SSL verification
9
13
  - Add chef_version and ohai_version metadata when extended-metadata is enabled
10
14
  - Add CONTRIBUTING.md, MAINTAINERS.md and .foodcritic to the file whitelist
11
15
 
12
- v3.2.7 (2015-04-16)
13
- -------------------
16
+ ## v3.2.7 (2015-04-16)
17
+
14
18
  - Use chef.io instead of getchef.com
15
19
  - Ignore `vendor/` directory
16
- - Do not publish extended metadata fields like `issues_url` and `source_url` by
17
- default (GH-64, GH-72). These fields can be optionally added using the
18
- new `--extended-metadata` flag.
20
+ - Do not publish extended metadata fields like `issues_url` and `source_url` by default (GH-64, GH-72). These fields can be optionally added using the new `--extended-metadata` flag.
19
21
  - Add support for Ruby 2.2
20
22
  - Use binmode when reading and writing the tgz (GH-64)
21
23
 
22
- v3.2.6 (2015-03-18)
23
- -------------------
24
+ ## v3.2.6 (2015-03-18)
25
+
24
26
  - Include new metadata methods for Supermarket
25
27
 
26
- v3.2.5 (2014-12-19)
27
- -------------------
28
+ ## v3.2.5 (2014-12-19)
29
+
28
30
  - Fix a bug with line endings when generating tarballs
29
31
 
30
- v3.2.4 (2014-12-07)
31
- -------------------
32
+ ## v3.2.4 (2014-12-07)
33
+
32
34
  - Add support for `issues_url` and `source_url` metadata attributes
33
35
 
34
- v3.2.3 (2014-10-12)
35
- -------------------
36
+ ## v3.2.3 (2014-10-12)
37
+
36
38
  - Only upload fully-compiled metadata (i.e. only upload metadata.json, not metadata.rb)
37
39
 
38
- v3.2.2 (2014-08-07)
39
- -------------------
40
+ ## v3.2.2 (2014-08-07)
41
+
40
42
  - Fix a bug where files beginning with a dot (`.`) were not packaged
41
43
 
42
- v3.2.1 (2014-07-16)
43
- -------------------
44
+ ## v3.2.1 (2014-07-16)
45
+
44
46
  - Fix a critical bug where nested directories are flattened
45
47
 
46
- v3.2.0 (2014-07-15)
47
- -------------------
48
+ ## v3.2.0 (2014-07-15)
49
+
48
50
  **This version has been removed from Rubygems**
51
+
49
52
  - Add the ability to "yank" (delete) a cookbook from the Supermarket
50
53
  - Remove the `--category` flag (it is no longer honored)
51
54
  - Fix a bug where the `resources/` folder was not uploaded
52
55
  - Fix a bug when the cookbook name is not the same as the metdata name in the uploaded tarball
53
56
 
54
- v3.1.0 (2014-07-10)
55
- -------------------
57
+ ## v3.1.0 (2014-07-10)
58
+
56
59
  **This version has been removed from Rubygems**
57
60
 
58
61
  - Use the generated tempfile directly (instead of writing to disk and creating File objects)
@@ -62,8 +65,8 @@ v3.1.0 (2014-07-10)
62
65
  - Use Rubygem's TarWrtier instead of minitar (removed dependency)
63
66
  - Bump version of Chef API to support tempfile IO objects
64
67
 
65
- v3.0.0 (2014-07-07)
66
- -------------------
68
+ ## v3.0.0 (2014-07-07)
69
+
67
70
  - Add support for signed git tags
68
71
  - Require Ruby 1.9+
69
72
  - Remove i18n in favor of ERB
@@ -82,8 +85,8 @@ v3.0.0 (2014-07-07)
82
85
  - Improve test coverage
83
86
  - Publish to Supermarket by default
84
87
 
85
- v2.0.0 (2014-04-04)
86
- -------------------
88
+ ## v2.0.0 (2014-04-04)
89
+
87
90
  - Completely refactor the runner for speed optimizations
88
91
  - Introduce a new configuration file format
89
92
  - Add i18n support
@@ -99,8 +102,8 @@ v2.0.0 (2014-04-04)
99
102
  - Persist data across the cookbook object
100
103
  - Use singleton classes to save memory and loadtime
101
104
 
102
- v1.1.0
103
- ------
105
+ ## v1.1.0
106
+
104
107
  - Check if the git remote is in sync with local branch before pushing
105
108
  - Add support for bumping devodd releases
106
109
  - Add a custom rake task
@@ -110,10 +113,10 @@ v1.1.0
110
113
  - Fix error where the community site does not give an adequate response
111
114
  - Retry uploads 3 times in case the community site is being lame
112
115
 
113
- v1.0.1
114
- ------
116
+ ## v1.0.1
117
+
115
118
  - Fix a bug where `--log-level` was being ignored
116
119
 
117
- v1.0.0
118
- ------
120
+ ## v1.0.0
121
+
119
122
  - Initial release
data/lib/stove/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Stove
2
- VERSION = '3.2.8'
2
+ VERSION = '4.0.0'
3
3
  end
data/stove.gemspec CHANGED
@@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
18
18
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
19
  spec.require_paths = ['lib']
20
20
 
21
- spec.required_ruby_version = '>= 1.9'
21
+ spec.required_ruby_version = '>= 2.0'
22
22
 
23
23
  # Runtime dependencies
24
24
  spec.add_dependency 'chef-api', '~> 0.5'
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.8
4
+ version: 4.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Seth Vargo
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-11-19 00:00:00.000000000 Z
11
+ date: 2016-05-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: chef-api
@@ -186,7 +186,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
186
186
  requirements:
187
187
  - - ">="
188
188
  - !ruby/object:Gem::Version
189
- version: '1.9'
189
+ version: '2.0'
190
190
  required_rubygems_version: !ruby/object:Gem::Requirement
191
191
  requirements:
192
192
  - - ">="
@@ -194,7 +194,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
194
194
  version: '0'
195
195
  requirements: []
196
196
  rubyforge_project:
197
- rubygems_version: 2.4.5.1
197
+ rubygems_version: 2.6.3
198
198
  signing_key:
199
199
  specification_version: 4
200
200
  summary: A command-line utility for releasing Chef community cookbooks