Skip to content

Commit 7953aeb

Browse files
authored
Moves gems for newer ssh keys into global context in gemfile (#672)
1 parent c165209 commit 7953aeb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Gemfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,9 @@ gem 'net-smtp', require: false # For Ruby 3 and Rails 6 mail compatibil
8383
gem 'psych', '< 4'
8484
# Matrix methods are needed for deployment
8585
gem 'matrix', '~> 0.4.2'
86+
# Support for newer ssh keys on newer machines
87+
gem 'ed25519', '~> 1.2.4'
88+
gem 'bcrypt_pbkdf', '~> 1.0.0'
8689

8790
group :development, :test do
8891
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
@@ -101,9 +104,6 @@ group :development do
101104
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
102105
gem 'spring', '~> 2.1.0'
103106
gem 'spring-watcher-listen', '~> 2.0.0'
104-
# Support for newer ssh keys on newer machines
105-
gem 'ed25519', '~> 1.2.4'
106-
gem 'bcrypt_pbkdf', '~> 1.0.0'
107107
end
108108

109109
group :test do

0 commit comments

Comments
 (0)