net-ssh 2.6.0 → 2.6.1
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.rdoc +1 -0
- data/lib/net/ssh/authentication/pageant.rb +1 -1
- data/lib/net/ssh/version.rb +1 -1
- data/net-ssh.gemspec +10 -9
- metadata +3 -14
data/README.rdoc
CHANGED
|
@@ -88,6 +88,7 @@ Lastly, if you want to run the tests or use any of the Rake tasks, you'll need:
|
|
|
88
88
|
|
|
89
89
|
* gem install net-ssh (might need sudo privileges)
|
|
90
90
|
|
|
91
|
+
NOTE: If you are running on jruby you need to install jruby-pageant manually (gemspec doesn't allow for platform specific dependencies).
|
|
91
92
|
|
|
92
93
|
== ARCFOUR SUPPORT:
|
|
93
94
|
|
|
@@ -18,7 +18,7 @@ module Net; module SSH; module Authentication
|
|
|
18
18
|
# identities.
|
|
19
19
|
#
|
|
20
20
|
# This code is a slightly modified version of the original implementation
|
|
21
|
-
# by Guillaume
|
|
21
|
+
# by Guillaume Marçais (guillaume.marcais@free.fr). It is used and
|
|
22
22
|
# relicensed by permission.
|
|
23
23
|
module Pageant
|
|
24
24
|
|
data/lib/net/ssh/version.rb
CHANGED
data/net-ssh.gemspec
CHANGED
|
@@ -1,26 +1,27 @@
|
|
|
1
1
|
@spec = Gem::Specification.new do |s|
|
|
2
2
|
s.name = "net-ssh"
|
|
3
3
|
s.rubyforge_project = 'net-ssh'
|
|
4
|
-
s.version = "2.6.
|
|
4
|
+
s.version = "2.6.1"
|
|
5
5
|
s.summary = "Net::SSH: a pure-Ruby implementation of the SSH2 client protocol."
|
|
6
6
|
s.description = s.summary + " It allows you to write programs that invoke and interact with processes on remote servers, via SSH2."
|
|
7
7
|
s.authors = ["Jamis Buck", "Delano Mandelbaum"]
|
|
8
8
|
s.email = ["net-ssh@solutious.com"]
|
|
9
9
|
s.homepage = "http://github.com/net-ssh/net-ssh"
|
|
10
|
-
|
|
10
|
+
|
|
11
11
|
s.extra_rdoc_files = %w[README.rdoc THANKS.rdoc CHANGELOG.rdoc]
|
|
12
12
|
s.has_rdoc = true
|
|
13
13
|
s.rdoc_options = ["--line-numbers", "--title", s.summary, "--main", "README.rdoc"]
|
|
14
14
|
s.require_paths = %w[lib]
|
|
15
15
|
s.rubygems_version = '1.3.2'
|
|
16
|
-
|
|
17
|
-
#
|
|
18
|
-
#
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
16
|
+
|
|
17
|
+
# Note: this is run at package time not install time so if you are
|
|
18
|
+
# running on jruby, you need to install jruby-pageant manually.
|
|
19
|
+
if RUBY_PLATFORM == "java"
|
|
20
|
+
s.add_dependency 'jruby-pageant', ">=1.1.1"
|
|
21
|
+
end
|
|
22
|
+
|
|
22
23
|
s.executables = %w[]
|
|
23
|
-
|
|
24
|
+
|
|
24
25
|
# = MANIFEST =
|
|
25
26
|
s.files = %w(
|
|
26
27
|
CHANGELOG.rdoc
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: net-ssh
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.6.
|
|
4
|
+
version: 2.6.1
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -10,19 +10,8 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2012-
|
|
14
|
-
dependencies:
|
|
15
|
-
- !ruby/object:Gem::Dependency
|
|
16
|
-
name: jruby-pageant
|
|
17
|
-
requirement: &70132399474300 !ruby/object:Gem::Requirement
|
|
18
|
-
none: false
|
|
19
|
-
requirements:
|
|
20
|
-
- - ! '>='
|
|
21
|
-
- !ruby/object:Gem::Version
|
|
22
|
-
version: 1.1.1
|
|
23
|
-
type: :runtime
|
|
24
|
-
prerelease: false
|
|
25
|
-
version_requirements: *70132399474300
|
|
13
|
+
date: 2012-10-18 00:00:00.000000000 Z
|
|
14
|
+
dependencies: []
|
|
26
15
|
description: ! 'Net::SSH: a pure-Ruby implementation of the SSH2 client protocol.
|
|
27
16
|
It allows you to write programs that invoke and interact with processes on remote
|
|
28
17
|
servers, via SSH2.'
|