direct_ssh 0.1.3 → 0.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/README.md CHANGED
@@ -53,7 +53,7 @@ Net::SSH.start('127.0.0.1', 'user', {:password => 'password'}) { |ssh|
53
53
  }
54
54
  ```
55
55
 
56
- can be rewritten like examples in **DirectSsh Style SSH Examples**.
56
+ can be rewritten like examples in [**DirectSsh Style SSH Examples**](#directssh-style-ssh-examples).
57
57
 
58
58
  ## DirectSsh Style SSH Examples
59
59
 
@@ -150,5 +150,6 @@ default port 22 will be used if you leave it off
150
150
  ## Links
151
151
 
152
152
  1. ruby gem [net-ssh](https://rubygems.org/gems/net-ssh)
153
- 2. ruby gem [highline](https://rubygems.org/gems/highline)
154
- 3. ruby gem [direct_ssh](https://rubygems.org/gems/direct_ssh)
153
+ 2. ruby gem [net-scp](https://rubygems.org/gems/net-scp)
154
+ 3. ruby gem [highline](https://rubygems.org/gems/highline)
155
+ 4. ruby gem [direct_ssh](https://rubygems.org/gems/direct_ssh)
@@ -1,6 +1,8 @@
1
1
  #!/usr/bin/env ruby
2
2
  # encoding: UTF-8
3
- #
3
+
4
+ require 'fileutils'
5
+ require 'base64'
4
6
 
5
7
  module KeyHandler
6
8
  def self.send_key_to_remote(ssh)
@@ -1,3 +1,3 @@
1
1
  module DirectSsh
2
- VERSION = "0.1.3"
2
+ VERSION = "0.1.4"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: direct_ssh
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-03-07 00:00:00.000000000 Z
12
+ date: 2013-03-15 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: net-ssh