Skip to content

Commit

Permalink
Merge pull request #185 from spkane/skane/ssh-fixes
Browse files Browse the repository at this point in the history
Include tempfile and add support for 'ssh-ed25519'
  • Loading branch information
spkane authored Dec 1, 2017
2 parents b0e14ce + 713781e commit e0e9111
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
7 changes: 5 additions & 2 deletions centurion.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ Gem::Specification.new do |spec|
'Nic Benders', 'Karl Matthias', 'Andrew Bloomgarden', 'Aaron Bento',
'Paul Showalter', 'David Kerr', 'Jonathan Owens', 'Jon Guymon',
'Merlyn Albery-Speyer', 'Amjith Ramanujam', 'David Celis', 'Emily Hyland',
'Bryan Stearns']
'Bryan Stearns', 'Sean P. Kane']
spec.email = [
'[email protected]', '[email protected]', '[email protected]',
'[email protected]', '[email protected]', '[email protected]',
'[email protected]', '[email protected]', '[email protected]',
'[email protected]', '[email protected]', '[email protected]',
'[email protected]']
'[email protected]', '[email protected]']
spec.summary = <<-EOS.gsub(/^\s+/, '')
A deployment tool for Docker. Takes containers from a Docker registry and
runs them on a fleet of hosts with the correct environment variables, host
Expand All @@ -37,6 +37,9 @@ Gem::Specification.new do |spec|
spec.add_dependency 'excon', '~> 0.33'
spec.add_dependency 'logger-colors'
spec.add_dependency 'net-ssh'
spec.add_dependency 'rbnacl'
spec.add_dependency 'rbnacl-libsodium'
spec.add_dependency 'bcrypt_pbkdf'
spec.add_dependency 'sshkit'

spec.add_development_dependency 'bundler'
Expand Down
1 change: 1 addition & 0 deletions lib/centurion/ssh.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
require 'net/ssh'
require 'sshkit'
require 'tempfile'

module Centurion; end

Expand Down

0 comments on commit e0e9111

Please sign in to comment.