stove 7.0.0 → 7.0.1

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
  SHA256:
3
- metadata.gz: 9d41cb20196130bd7e01b028e7dd7eb5cd72c5d8ed23f26b67acaa1a323c6b2f
4
- data.tar.gz: ba5a548d6b5dc9895595535281346816d604178d19c45ad039024c21854ef0a8
3
+ metadata.gz: 7ab5bbb24854defd1f0d19ce78b10f66ae23ee8574e78b698e3d0dd26aebbc74
4
+ data.tar.gz: 5a13e9e09f591d655064b9f183f465f0e587fc1cb630ab4581bb96554c18f7fd
5
5
  SHA512:
6
- metadata.gz: d59ab257fae548ed7ae06ca6dbf10fa9225b9144bcef7085bb0945c08fc16b3861ea8ef978fb1cbfa32858f2a8ba377514c8baf726da17f4036f9eadb7521267
7
- data.tar.gz: 65c28443fd4c73ef427261574ba8c1a15b3f50457fd277d6dc54384b897934bfb10e703355a3ffa28be86eb8b51580d917a38759d1e83d80a9f882b67e1444b5
6
+ metadata.gz: 69bbc12aaeeec4c789b652c42a50e417c84c0b6c0cfa5a1a5c10156337cc29c8c8067a9a6d8edfcb4ca5f702a308d2d96338fc639dced316e3cac792dbbe7fd0
7
+ data.tar.gz: d7885139992e9deeb691760315894d30d6ce129d7503f53a0fa288502e08f37e4190f42c843c103ce8b54078fa6e3b9278d716bdf858953d1644ac86b82757db
@@ -1,3 +1,3 @@
1
1
  module Stove
2
- VERSION = '7.0.0'
2
+ VERSION = '7.0.1'
3
3
  end
@@ -0,0 +1,5 @@
1
+ '<%= @method %>' is an abstract method. You must override this method in your subclass with the proper implementation and logic. For more information, please see the inline documentation for <%= @method %>. If you are not a developer, this is most likely a bug in the ChefAPI gem. Please file a bug report at:
2
+
3
+ https://github.com/sethvargo/stove/issues/new
4
+
5
+ and include the command(s) or code you ran to arrive at this error.
@@ -0,0 +1,11 @@
1
+ You did not specify an Artifactory API key! You can pass the key either via a command line argument:
2
+
3
+ stove --artifactory-key sUeEpLXJvfhw3UZHbVPrGCgdou8VI6fXpD5sUHd0pKAxCmuGWNHLgerpFPkCJ2EjBBPYcM4My
4
+
5
+ Or via a file path:
6
+
7
+ stove --artifactory-key @~/.artifactory/api.key
8
+
9
+ Or via an environment variable:
10
+
11
+ export ARTIFACTORY_API_KEY=sUeEpLXJvfhw3UZHbVPrGCgdou8VI6fXpD5sUHd0pKAxCmuGWNHLgerpFPkCJ2EjBBPYcM4My
@@ -0,0 +1 @@
1
+ The cookbook at `<%= @path %>' has untracked files! In order to use the git plugin, you must have a clean working directory. Please commit or stash your changes before running Stove again.
@@ -0,0 +1,5 @@
1
+ An error occurred while running:
2
+
3
+ git <%= @command %>
4
+
5
+ There is likely an informative message from git that explains what happened right above this message.
@@ -0,0 +1,3 @@
1
+ The cookbook at `<%= @path %>' does not appear to be a valid git repository. In order to use the git plugin, your cookbook must be initialized as a git repository. To create a git repository, run:
2
+
3
+ git init <%= @path %>
@@ -0,0 +1,5 @@
1
+ An error occurred while attempting to tag the release in git by running:
2
+
3
+ git <%= @command %>
4
+
5
+ This often occurs when you've already attempted to release a cookbook with stove. If you would like to try to release again without git tagging use the '--no-git' option
@@ -0,0 +1,7 @@
1
+ The cookbook at `<%= @path %>' is out of sync with the remote repository. Please update your local cache with the remote repository before continuing:
2
+
3
+ git pull
4
+
5
+ And then push your local changes to the remote repository:
6
+
7
+ git push
@@ -0,0 +1 @@
1
+ The file at `<%= @path %>' does not exist or does not contain valid metadata. Please make sure you have specified the correct path and that the metdata file exists.
@@ -0,0 +1 @@
1
+ The server at `<%= @url %>' is unavailable or is not currently accepting client connections. Please ensure the server is accessible via ping (or telnet) on your local network. If this error persists, please contact your network administrator.
@@ -0,0 +1 @@
1
+ Oh no! Something really bad happened. I am not sure what actually happened because this is the catch-all error, but you should most definitely report an issue on GitHub at https://github.com/sethvargo/stove.
@@ -0,0 +1,5 @@
1
+ Cookbook <%= @cookbook.name %> already has a version <%= @cookbook.version %> uploaded.
2
+
3
+ Please change the version number before uploading again.
4
+
5
+ If you need to change an existing version, please remove it first.
@@ -0,0 +1,3 @@
1
+ You did not specify the path to a private key! The Chef Supermarket requires a private key for authentication:
2
+
3
+ stove --key ~/.chef/sethvargo.pem
@@ -0,0 +1,3 @@
1
+ You did not specify the username to authenticate with! The Chef Supermarket requires a username for authentication:
2
+
3
+ stove --username sethvargo
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stove
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.0.0
4
+ version: 7.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Seth Vargo
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2018-12-03 00:00:00.000000000 Z
12
+ date: 2018-12-27 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: chef-api
@@ -172,6 +172,19 @@ files:
172
172
  - lib/stove/util.rb
173
173
  - lib/stove/validator.rb
174
174
  - lib/stove/version.rb
175
+ - templates/errors/abstract_method.erb
176
+ - templates/errors/artifactory_key_validation_failed.erb
177
+ - templates/errors/git_clean_validation_failed.erb
178
+ - templates/errors/git_failed.erb
179
+ - templates/errors/git_repository_validation_failed.erb
180
+ - templates/errors/git_tagging_failed.erb
181
+ - templates/errors/git_up_to_date_validation_failed.erb
182
+ - templates/errors/metadata_not_found.erb
183
+ - templates/errors/server_unavailable.erb
184
+ - templates/errors/stove_error.erb
185
+ - templates/errors/supermarket_already_exists.erb
186
+ - templates/errors/supermarket_key_validation_failed.erb
187
+ - templates/errors/supermarket_username_validation_failed.erb
175
188
  homepage: https://github.com/tas50/stove
176
189
  licenses:
177
190
  - Apache-2.0
@@ -192,7 +205,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
192
205
  version: '0'
193
206
  requirements: []
194
207
  rubyforge_project:
195
- rubygems_version: 2.7.8
208
+ rubygems_version: 2.7.7
196
209
  signing_key:
197
210
  specification_version: 4
198
211
  summary: A command-line utility for releasing Chef community cookbooks