From 0abcca219f031f2521df883ee8a537b714b5704e Mon Sep 17 00:00:00 2001 From: nitin sanghi Date: Tue, 5 Nov 2024 16:19:19 +0530 Subject: [PATCH] removed kitchen-dokken gem dep using git kitchen-dokken Signed-off-by: nitin sanghi --- Gemfile | 5 +++-- habitat/plan.sh | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Gemfile b/Gemfile index 14a7866a3..3d77caa43 100644 --- a/Gemfile +++ b/Gemfile @@ -3,6 +3,9 @@ source "https://rubygems.org" gemspec gem "appbundler" gem "pry" +gem "kitchen-dokken", git: "https://github.com/chef/kitchen-dokken", branch: "test_kitchen_dep_change" +gem "kitchen-inspec", git: "https://github.com/inspec/kitchen-inspec", branch: "temp-point-to-chef-test-kitchen-ent" + group :test do gem "rake" gem "rb-readline" @@ -17,8 +20,6 @@ end group :integration do gem "chef-cli" - gem "kitchen-dokken" - gem "kitchen-inspec" gem "kitchen-vagrant" end diff --git a/habitat/plan.sh b/habitat/plan.sh index ffefaafd4..399b1cad7 100644 --- a/habitat/plan.sh +++ b/habitat/plan.sh @@ -80,7 +80,7 @@ do_build() { build_line "Installing gems from git repos properly ..." build_line "Installing this project's gems ..." bundle exec rake install:local - gem install chef-utils chef-config appbundler aruba kitchen-dokken + gem install chef-utils chef-config appbundler aruba ) }