sambot 0.1.20 → 0.1.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/sambot/commands/cookbook.rb +3 -3
- data/lib/sambot/commands/teamcity.rb +1 -0
- data/lib/sambot/domain/common/ui.rb +4 -0
- data/lib/sambot/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4b0222720c0f848ec45fc3996a3c13dd566331cf
|
4
|
+
data.tar.gz: 83eaa9cc55c7308147e6a126e13b8abd45355290
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2568a97d703f31a837a24e3765c7fc9b768ffb5424051dc5d55ff35659f47763fbed7bb4b43898573e419caa7f9fd88514e726346c6090bf0991cfae7cc30609
|
7
|
+
data.tar.gz: f4a401b0e53c79b1e8516d418474cf0961af3154da5410f7ba640d3058e51aff7dd7246a9323a2d7907cc81ac4e88f30e93b2a6dd5dbf2c84e11b03b99f1cd00
|
@@ -23,7 +23,7 @@ module Sambot
|
|
23
23
|
modified_files.each {|file| debug("./#{file} has been removed.")}
|
24
24
|
info('The cookbook has been successfully cleaned.')
|
25
25
|
rescue Domain::Common::ApplicationException => e
|
26
|
-
|
26
|
+
error(e.message)
|
27
27
|
end
|
28
28
|
|
29
29
|
desc 'build', 'Builds a cookbook from its configuration file'
|
@@ -39,7 +39,7 @@ module Sambot
|
|
39
39
|
modified_files.each {|file| debug("./#{file} has been added to the cookbook.")}
|
40
40
|
info('The cookbook has been successfully built.')
|
41
41
|
rescue Domain::Common::ApplicationException => e
|
42
|
-
|
42
|
+
error(e.message)
|
43
43
|
end
|
44
44
|
|
45
45
|
desc 'generate', 'Creates a new cookbook'
|
@@ -58,7 +58,7 @@ module Sambot
|
|
58
58
|
Sambot::Domain::Cookbooks::AssistantChef.new.generate_cookbook(name, options[:platform], options[:type], ESSENTIAL_FILES, GENERATED_FILES)
|
59
59
|
info('The cookbook has been successfully generated.')
|
60
60
|
rescue Domain::Common::ApplicationException => e
|
61
|
-
|
61
|
+
error(e.message)
|
62
62
|
end
|
63
63
|
|
64
64
|
private
|
data/lib/sambot/version.rb
CHANGED