Skip to content

Commit e0e9111

Browse files
authored
Merge pull request #185 from spkane/skane/ssh-fixes
Include tempfile and add support for 'ssh-ed25519'
2 parents b0e14ce + 713781e commit e0e9111

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

centurion.gemspec

+5-2
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ Gem::Specification.new do |spec|
1010
'Nic Benders', 'Karl Matthias', 'Andrew Bloomgarden', 'Aaron Bento',
1111
'Paul Showalter', 'David Kerr', 'Jonathan Owens', 'Jon Guymon',
1212
'Merlyn Albery-Speyer', 'Amjith Ramanujam', 'David Celis', 'Emily Hyland',
13-
'Bryan Stearns']
13+
'Bryan Stearns', 'Sean P. Kane']
1414
spec.email = [
1515
1616
1717
1818
19-
19+
2020
spec.summary = <<-EOS.gsub(/^\s+/, '')
2121
A deployment tool for Docker. Takes containers from a Docker registry and
2222
runs them on a fleet of hosts with the correct environment variables, host
@@ -37,6 +37,9 @@ Gem::Specification.new do |spec|
3737
spec.add_dependency 'excon', '~> 0.33'
3838
spec.add_dependency 'logger-colors'
3939
spec.add_dependency 'net-ssh'
40+
spec.add_dependency 'rbnacl'
41+
spec.add_dependency 'rbnacl-libsodium'
42+
spec.add_dependency 'bcrypt_pbkdf'
4043
spec.add_dependency 'sshkit'
4144

4245
spec.add_development_dependency 'bundler'

lib/centurion/ssh.rb

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
require 'net/ssh'
22
require 'sshkit'
3+
require 'tempfile'
34

45
module Centurion; end
56

0 commit comments

Comments
 (0)