make capistrano work with ed25519 keys
This commit is contained in:
parent
f287fa6092
commit
b756c35345
5
Gemfile
5
Gemfile
|
@ -87,6 +87,11 @@ end
|
||||||
group :development do
|
group :development do
|
||||||
gem 'capistrano', '~> 3.8', require: false
|
gem 'capistrano', '~> 3.8', require: false
|
||||||
gem 'capistrano-rails', require: false
|
gem 'capistrano-rails', require: false
|
||||||
|
|
||||||
|
gem 'rbnacl', '>= 3.2', '< 5.0', require: false
|
||||||
|
gem 'rbnacl-libsodium', require: false
|
||||||
|
gem 'bcrypt_pbkdf', '>= 1.0', '< 2.0', require: false
|
||||||
|
gem 'ed25519', require: false
|
||||||
end
|
end
|
||||||
|
|
||||||
group :production do
|
group :production do
|
||||||
|
|
10
Gemfile.lock
10
Gemfile.lock
|
@ -62,6 +62,7 @@ GEM
|
||||||
autoprefixer-rails (9.7.6)
|
autoprefixer-rails (9.7.6)
|
||||||
execjs
|
execjs
|
||||||
bcrypt (3.1.13)
|
bcrypt (3.1.13)
|
||||||
|
bcrypt_pbkdf (1.0.1)
|
||||||
better_errors (2.6.0)
|
better_errors (2.6.0)
|
||||||
coderay (>= 1.0.0)
|
coderay (>= 1.0.0)
|
||||||
erubi (>= 1.0.0)
|
erubi (>= 1.0.0)
|
||||||
|
@ -137,6 +138,7 @@ GEM
|
||||||
domain_name (0.5.20190701)
|
domain_name (0.5.20190701)
|
||||||
unf (>= 0.0.5, < 1.0.0)
|
unf (>= 0.0.5, < 1.0.0)
|
||||||
dry-inflector (0.2.0)
|
dry-inflector (0.2.0)
|
||||||
|
ed25519 (1.2.4)
|
||||||
equalizer (0.0.11)
|
equalizer (0.0.11)
|
||||||
erubi (1.9.0)
|
erubi (1.9.0)
|
||||||
excon (0.73.0)
|
excon (0.73.0)
|
||||||
|
@ -515,6 +517,10 @@ GEM
|
||||||
rb-fsevent (0.10.3)
|
rb-fsevent (0.10.3)
|
||||||
rb-inotify (0.10.1)
|
rb-inotify (0.10.1)
|
||||||
ffi (~> 1.0)
|
ffi (~> 1.0)
|
||||||
|
rbnacl (4.0.2)
|
||||||
|
ffi
|
||||||
|
rbnacl-libsodium (1.0.16)
|
||||||
|
rbnacl (>= 3.0.1)
|
||||||
rbvmomi (2.4.1)
|
rbvmomi (2.4.1)
|
||||||
builder (~> 3.0)
|
builder (~> 3.0)
|
||||||
json (>= 1.8)
|
json (>= 1.8)
|
||||||
|
@ -663,6 +669,7 @@ PLATFORMS
|
||||||
|
|
||||||
DEPENDENCIES
|
DEPENDENCIES
|
||||||
bcrypt (~> 3.1.7)
|
bcrypt (~> 3.1.7)
|
||||||
|
bcrypt_pbkdf (>= 1.0, < 2.0)
|
||||||
better_errors
|
better_errors
|
||||||
bootstrap-sass (~> 3.4.0)
|
bootstrap-sass (~> 3.4.0)
|
||||||
bootstrap3-datetimepicker-rails (~> 4.7.14)
|
bootstrap3-datetimepicker-rails (~> 4.7.14)
|
||||||
|
@ -680,6 +687,7 @@ DEPENDENCIES
|
||||||
devise (~> 4.0)
|
devise (~> 4.0)
|
||||||
devise-async
|
devise-async
|
||||||
devise-i18n
|
devise-i18n
|
||||||
|
ed25519
|
||||||
factory_girl_rails
|
factory_girl_rails
|
||||||
fake_email_validator
|
fake_email_validator
|
||||||
faker
|
faker
|
||||||
|
@ -715,6 +723,8 @@ DEPENDENCIES
|
||||||
rails-i18n (~> 5.0)
|
rails-i18n (~> 5.0)
|
||||||
rails_admin
|
rails_admin
|
||||||
rake
|
rake
|
||||||
|
rbnacl (>= 3.2, < 5.0)
|
||||||
|
rbnacl-libsodium
|
||||||
redcarpet
|
redcarpet
|
||||||
redis
|
redis
|
||||||
rollbar
|
rollbar
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# config valid only for current version of Capistrano
|
# config valid only for current version of Capistrano
|
||||||
lock "3.8.0"
|
lock "3.13.0"
|
||||||
|
|
||||||
set :application, "retrospring"
|
set :application, "retrospring"
|
||||||
set :repo_url, "git@git.rrerr.net:nilsding/retrospring.git"
|
set :repo_url, "git@git.rrerr.net:nilsding/retrospring.git"
|
||||||
|
|
Loading…
Reference in New Issue