summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc A. Paradise <marc.paradise@gmail.com>2021-03-09 16:49:10 -0500
committerMarc A. Paradise <marc.paradise@gmail.com>2021-03-10 12:57:09 -0500
commit83965fa6eadfe1cf6a693ae36cccc883eaf90a43 (patch)
treec51689fa9fdc4252cd64f91d41f245647d1087cb
parenta12576d6841ce2f78343390a93f922bc3711fcab (diff)
downloadchef-83965fa6eadfe1cf6a693ae36cccc883eaf90a43.tar.gz
Fix missing deps
Signed-off-by: Marc A. Paradise <marc.paradise@gmail.com>
-rw-r--r--knife/Gemfile16
-rw-r--r--knife/Gemfile.lock48
2 files changed, 64 insertions, 0 deletions
diff --git a/knife/Gemfile b/knife/Gemfile
index a28adea261..57c6a52f93 100644
--- a/knife/Gemfile
+++ b/knife/Gemfile
@@ -5,6 +5,22 @@ group(:development, :test) do
gem "webmock" # testing only
gem "rake"
gem "rspec"
+ gem "chef-bin", path: "../chef-bin"
+end
+
+group(:ruby_prof) do
+ # ruby-prof 1.3.0 does not compile on our centos6 builders/kitchen testers
+ gem "ruby-prof", "< 1.3.0"
+end
+
+group(:omnibus_package, :pry) do
+ gem "pry"
+ gem "pry-byebug"
+ gem "pry-stack_explorer"
+end
+
+group(:chefstyle) do
+ gem "chefstyle", git: "https://github.com/chef/chefstyle.git", branch: "master"
end
gem "ohai", git: "https://github.com/chef/ohai.git", branch: "master"
diff --git a/knife/Gemfile.lock b/knife/Gemfile.lock
index d55dccdafc..3b3a97998c 100644
--- a/knife/Gemfile.lock
+++ b/knife/Gemfile.lock
@@ -1,4 +1,12 @@
GIT
+ remote: https://github.com/chef/chefstyle.git
+ revision: 8a1ad4ab1f4e210cc9440f64c9eb5d674ed10b38
+ branch: master
+ specs:
+ chefstyle (1.7.2)
+ rubocop (= 1.11.0)
+
+GIT
remote: https://github.com/chef/ohai.git
revision: fd8c1b65dbb087ddb4df3c8e10b88eae239219d0
branch: master
@@ -18,6 +26,12 @@ GIT
wmi-lite (~> 1.0)
PATH
+ remote: ../chef-bin
+ specs:
+ chef-bin (17.0.135)
+ chef (= 17.0.135)
+
+PATH
remote: ..
specs:
chef (17.0.135)
@@ -78,8 +92,12 @@ GEM
specs:
addressable (2.7.0)
public_suffix (>= 2.0.2, < 5.0)
+ ast (2.4.2)
bcrypt_pbkdf (1.1.0)
+ binding_of_caller (1.0.0)
+ debug_inspector (>= 0.0.1)
builder (3.2.4)
+ byebug (11.1.3)
chef-telemetry (1.0.29)
chef-config
concurrent-ruby (~> 1.0)
@@ -98,6 +116,7 @@ GEM
concurrent-ruby (1.1.8)
crack (0.4.5)
rexml
+ debug_inspector (1.0.0)
diff-lcs (1.3)
ed25519 (1.2.4)
erubi (1.10.0)
@@ -183,6 +202,8 @@ GEM
net-ssh-gateway (>= 1.2.0)
nori (2.6.0)
parallel (1.20.1)
+ parser (3.0.0.0)
+ ast (~> 2.4.1)
parslet (1.8.2)
pastel (0.8.0)
tty-color (~> 0.5)
@@ -191,9 +212,17 @@ GEM
pry (0.14.0)
coderay (~> 1.1)
method_source (~> 1.0)
+ pry-byebug (3.8.0)
+ byebug (~> 11.0)
+ pry (~> 0.10)
+ pry-stack_explorer (0.6.1)
+ binding_of_caller (~> 1.0)
+ pry (~> 0.13)
public_suffix (4.0.6)
rack (2.2.3)
+ rainbow (3.0.0)
rake (13.0.3)
+ regexp_parser (2.1.1)
rexml (3.2.4)
rspec (3.10.0)
rspec-core (~> 3.10.0)
@@ -211,6 +240,19 @@ GEM
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.10.0)
rspec-support (3.10.2)
+ rubocop (1.11.0)
+ parallel (~> 1.10)
+ parser (>= 3.0.0.0)
+ rainbow (>= 2.2.2, < 4.0)
+ regexp_parser (>= 1.8, < 3.0)
+ rexml
+ rubocop-ast (>= 1.2.0, < 2.0)
+ ruby-progressbar (~> 1.7)
+ unicode-display_width (>= 1.4.0, < 3.0)
+ rubocop-ast (1.4.1)
+ parser (>= 2.7.1.5)
+ ruby-prof (1.2.0)
+ ruby-progressbar (1.11.0)
ruby2_keywords (0.0.4)
rubyntlm (0.6.3)
rubyzip (2.3.0)
@@ -287,12 +329,18 @@ PLATFORMS
DEPENDENCIES
chef!
+ chef-bin!
chef-config!
chef-utils!
cheffish (>= 14)
+ chefstyle!
ohai!
+ pry
+ pry-byebug
+ pry-stack_explorer
rake
rspec
+ ruby-prof (< 1.3.0)
webmock
BUNDLED WITH