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 +4 -4
- data/lib/stove/version.rb +1 -1
- data/templates/errors/abstract_method.erb +5 -0
- data/templates/errors/artifactory_key_validation_failed.erb +11 -0
- data/templates/errors/git_clean_validation_failed.erb +1 -0
- data/templates/errors/git_failed.erb +5 -0
- data/templates/errors/git_repository_validation_failed.erb +3 -0
- data/templates/errors/git_tagging_failed.erb +5 -0
- data/templates/errors/git_up_to_date_validation_failed.erb +7 -0
- data/templates/errors/metadata_not_found.erb +1 -0
- data/templates/errors/server_unavailable.erb +1 -0
- data/templates/errors/stove_error.erb +1 -0
- data/templates/errors/supermarket_already_exists.erb +5 -0
- data/templates/errors/supermarket_key_validation_failed.erb +3 -0
- data/templates/errors/supermarket_username_validation_failed.erb +3 -0
- metadata +16 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7ab5bbb24854defd1f0d19ce78b10f66ae23ee8574e78b698e3d0dd26aebbc74
|
4
|
+
data.tar.gz: 5a13e9e09f591d655064b9f183f465f0e587fc1cb630ab4581bb96554c18f7fd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 69bbc12aaeeec4c789b652c42a50e417c84c0b6c0cfa5a1a5c10156337cc29c8c8067a9a6d8edfcb4ca5f702a308d2d96338fc639dced316e3cac792dbbe7fd0
|
7
|
+
data.tar.gz: d7885139992e9deeb691760315894d30d6ce129d7503f53a0fa288502e08f37e4190f42c843c103ce8b54078fa6e3b9278d716bdf858953d1644ac86b82757db
|
data/lib/stove/version.rb
CHANGED
@@ -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 @@
|
|
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.
|
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.
|
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-
|
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.
|
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
|