chef-cli 3.0.30 → 3.0.31

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
  SHA256:
3
- metadata.gz: 8a39366b7f1920937b7329ef1a5b54d810d4b3c017e331926608356c55c68250
4
- data.tar.gz: 20882fcd4590d7969d7afd83aec868e89be1c032651dc594dcc61f4eee2eb632
3
+ metadata.gz: 85e388b9fab9f43a073f194f4c3c6c9378c8a9adbed5ff72110f2c9a595902b7
4
+ data.tar.gz: eb70e257bc469e1e5fe45f8d35cbc1b1ae70d3906753c566d9d022cfc8733bc2
5
5
  SHA512:
6
- metadata.gz: 621b7594acfcb6968c5ddd3d690fc49a86b4c6932d4011debdadee19d86d638b7caea04eba2aa89776be213533ec4c14be65b715418edf83a39fda0f651c8bba
7
- data.tar.gz: 315dd298b75add288ff031a1c9b7d3a0d5d4994454476570b4fd3c46a4c0ae3d693ecc8d9ac0b43aa5c10f3ffa1901921fb841e63198612b84d0cbb6e630d582
6
+ metadata.gz: e8df4c043504a3671210ea15bb0109f4a1f8dc9929e9e86665f227b82e8425d35196e0cd9143c1842549f9cea3efe2bd6248a8c6d14b98abc2fd0825983559e9
7
+ data.tar.gz: 235eeafdd090fe44cb78ad741e55797d19da15acdf853d9877f0b164fdc782f21e75e3f523cd4f5e1c6810e4b256185c087c5e22644843c8a0cb667fe8692c32
@@ -33,9 +33,9 @@ module ChefCLI
33
33
  include Chef::Mixin::ShellOut
34
34
 
35
35
  banner(<<~BANNER)
36
- The Chef command line tool for managing your infrastructure from your workstation.
37
- Docs: https://docs.chef.io/workstation/
38
- Patents: https://www.chef.io/patents
36
+ #{ChefCLI::Dist::WORKSTATION_HEADER}
37
+ Docs: #{ChefCLI::Dist::WORKSTATION_DOCS}
38
+ Patents: #{ChefCLI::Dist::PATENTS}
39
39
 
40
40
  Usage:
41
41
  #{ChefCLI::Dist::EXEC} -h/--help
@@ -27,7 +27,6 @@ module ChefCLI
27
27
 
28
28
  # The name of the server product
29
29
  SERVER_PRODUCT = "Chef Infra Server".freeze
30
-
31
30
  WORKFLOW = "Chef Workflow (Delivery)".freeze
32
31
 
33
32
  # The chef executable, as in `chef gem install` or `chef generate cookbook`
@@ -38,7 +37,13 @@ module ChefCLI
38
37
 
39
38
  HAB_PRODUCT = "Chef Habitat".freeze
40
39
  HAB_SOFTWARE_NAME = "habitat".freeze
41
-
42
40
  HAB_CLI = "hab".freeze
41
+
42
+ # product patents page
43
+ PATENTS = "https://www.chef.io/patents".freeze
44
+
45
+ # Workstation banner/help text
46
+ WORKSTATION_DOCS = "https://docs.chef.io/workstation/".freeze
47
+ WORKSTATION_HEADER = "The Chef command line tool for managing your infrastructure from your workstation.".freeze
43
48
  end
44
49
  end
@@ -16,5 +16,5 @@
16
16
  #
17
17
 
18
18
  module ChefCLI
19
- VERSION = "3.0.30".freeze
19
+ VERSION = "3.0.31".freeze
20
20
  end
@@ -41,9 +41,9 @@ describe ChefCLI::CLI do
41
41
 
42
42
  let(:base_help_message) do
43
43
  <<~E
44
- The Chef command line tool for managing your infrastructure from your workstation.
45
- Docs: https://docs.chef.io/workstation/
46
- Patents: https://www.chef.io/patents
44
+ #{ChefCLI::Dist::WORKSTATION_HEADER}
45
+ Docs: #{ChefCLI::Dist::WORKSTATION_DOCS}
46
+ Patents: #{ChefCLI::Dist::PATENTS}
47
47
 
48
48
  Usage:
49
49
  chef -h/--help
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chef-cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.30
4
+ version: 3.0.31
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chef Software, Inc.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-09-22 00:00:00.000000000 Z
11
+ date: 2020-09-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: mixlib-cli