sambot 0.1.125 → 0.1.126
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3f81638875f2bc03381bc7042bb882e61417c1ef
|
|
4
|
+
data.tar.gz: ec23bdfa1dbfc338b0623350f553401b80b908c1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 96fc692eeaf190b47430d84fa7c2a110e723b5d9c629e7685a77ca64aacd458186acc8fea33c4bc9d74cf7bd03ffd6b696377acad3a9af4266332b82a526fb17
|
|
7
|
+
data.tar.gz: 0271c472b879183ac7b8a1a53cb3a25d744b9c8ccc1a895027f8102a5312ed8de3d271b771e13f94d0be0ebb3ec38b235326514c1772f6125bae2f5fa686332c
|
data/lib/sambot/cli.rb
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
require_relative '
|
|
3
|
+
require_relative 'base_command'
|
|
4
4
|
require_relative 'commands/cookbook_cmd'
|
|
5
5
|
|
|
6
6
|
module Sambot
|
|
7
|
-
class CLI <
|
|
7
|
+
class CLI < BaseCommand
|
|
8
8
|
|
|
9
9
|
desc 'cookbook', 'Manage Chef cookbooks'
|
|
10
10
|
subcommand 'cookbook', Sambot::Commands::CookbookCmd
|
data/lib/sambot/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sambot
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.126
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Olivier Kouame
|
|
@@ -457,6 +457,7 @@ files:
|
|
|
457
457
|
- bin/slackbot
|
|
458
458
|
- lib/sambot.rb
|
|
459
459
|
- lib/sambot/application_error.rb
|
|
460
|
+
- lib/sambot/base_command.rb
|
|
460
461
|
- lib/sambot/chef/cookbook.rb
|
|
461
462
|
- lib/sambot/chef/generator.rb
|
|
462
463
|
- lib/sambot/chef/hooks.rb
|
|
@@ -464,7 +465,6 @@ files:
|
|
|
464
465
|
- lib/sambot/chef/metadata.rb
|
|
465
466
|
- lib/sambot/chef/server.rb
|
|
466
467
|
- lib/sambot/cli.rb
|
|
467
|
-
- lib/sambot/commands/base_command.rb
|
|
468
468
|
- lib/sambot/commands/cookbook_cmd.rb
|
|
469
469
|
- lib/sambot/config.rb
|
|
470
470
|
- lib/sambot/dns/records.rb
|