Skip to content

Commit

Permalink
updated chef gems
Browse files Browse the repository at this point in the history
Signed-off-by: nikhil2611 <[email protected]>
  • Loading branch information
nikhil2611 committed Jul 12, 2024
1 parent 13998a2 commit cd93a9a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion chef-apply.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,11 @@ Gem::Specification.new do |spec|
spec.add_dependency "train-winrm" # winrm transports were pulled out into this plugin
spec.add_dependency "pastel" # A color library
spec.add_dependency "tty-spinner" # Pretty output for status updates in the CLI
spec.add_dependency "chef", ">= 18.0" # Needed to load cookbooks
if RUBY_VERSION.match?(/3.3/)
spec.add_dependency "chef", "~> 18.0"
else
spec.add_dependency "chef", ">= 16.0"
end
spec.add_dependency "chef-cli", ">= 2.0.10 " # Policyfile
spec.add_dependency "chef-telemetry", ">= 1.0.2"
spec.add_dependency "license-acceptance", ">= 1.0.11", "< 3"
Expand Down

0 comments on commit cd93a9a

Please sign in to comment.