-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #185 from spkane/skane/ssh-fixes
Include tempfile and add support for 'ssh-ed25519'
- Loading branch information
Showing
2 changed files
with
6 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -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' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
require 'net/ssh' | ||
require 'sshkit' | ||
require 'tempfile' | ||
|
||
module Centurion; end | ||
|
||
|