diff options
author | Tim Smith <tsmith84@gmail.com> | 2021-10-05 16:04:19 -0700 |
---|---|---|
committer | Tim Smith <tsmith84@gmail.com> | 2021-10-05 16:04:45 -0700 |
commit | 956067ca37ec894ccf2a389a0d197084cf843ea9 (patch) | |
tree | 953290dc73defa195215e2589f4f2d3802ae4001 /Gemfile | |
parent | f02bbdb0efe742a144d528378545b17f1e79d27c (diff) | |
download | chef-956067ca37ec894ccf2a389a0d197084cf843ea9.tar.gz |
Move ed25519 dep into the gemfile
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'Gemfile')
-rw-r--r-- | Gemfile | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -39,6 +39,11 @@ group(:ruby_shadow) do gem "ruby-shadow", git: "https://github.com/chef/ruby-shadow", branch: "lcg/ruby-3.0", platforms: :ruby end +# deps that cannot be put in the knife gem because they require a compiler and fail on windows nodes +group(:knife_windows_deps) do + gem "ed25519", "~> 1.2" # ed25519 ssh key support +end + group(:development, :test) do gem "rake" gem "rspec" |