net-ssh 2.6.5 → 2.6.6

Sign up to get free protection for your applications and to get access to all the features.
data.tar.gz.sig CHANGED
Binary file
@@ -1,4 +1,8 @@
1
1
 
2
+ === 2.6.6 / 03 Mar 2013
3
+
4
+ * Fix for ruby 2.0 in windows [jansegre]
5
+
2
6
  === 2.6.5 / 06 Feb 2013
3
7
 
4
8
  * Fixed path in gemspec [thanks priteau]
data/Rakefile CHANGED
@@ -42,16 +42,21 @@ rescue LoadError
42
42
  puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
43
43
  end
44
44
 
45
+ require 'rake/testtask'
46
+ Rake::TestTask.new do |t|
47
+ t.libs = ["lib", "test"]
48
+ end
49
+
50
+ extra_files = %w[LICENSE.txt THANKS.txt CHANGES.txt ]
45
51
  RDoc::Task.new do |rdoc|
46
52
  rdoc.rdoc_dir = "rdoc"
47
53
  rdoc.title = "#{name} #{version}"
48
54
  rdoc.generator = 'hanna' # gem install hanna-nouveau
49
55
  rdoc.main = 'README.rdoc'
50
56
  rdoc.rdoc_files.include("README*")
51
- rdoc.rdoc_files.include("LICENSE.txt")
52
- rdoc.rdoc_files.include("THANKS.txt")
53
- rdoc.rdoc_files.include("CHANGES.txt")
54
57
  rdoc.rdoc_files.include("bin/*.rb")
55
58
  rdoc.rdoc_files.include("lib/**/*.rb")
59
+ extra_files.each { |file|
60
+ rdoc.rdoc_files.include(file) if File.exists?(file)
61
+ }
56
62
  end
57
-
data/THANKS.txt CHANGED
@@ -19,8 +19,6 @@ Chris Andrews <chris@nodnol.org> and Lee Jensen <lee@outerim.com>
19
19
  Hiroshi Nakamura
20
20
  * fixed errors with JRuby tests
21
21
 
22
-
23
- Additional Contributors:
24
22
  Andreas Wolff
25
23
  mhuffnagle
26
24
  ohrite
@@ -74,18 +72,14 @@ Brian Candler
74
72
  Francis Sullivan
75
73
  James Rosen
76
74
  Mike Timm
77
-
78
-
79
-
80
-
81
-
82
-
83
-
84
-
85
-
86
-
87
-
88
-
89
-
90
-
91
-
75
+ guns
76
+ devrandom
77
+ kachick
78
+ Pablo Merino
79
+ thedarkone
80
+ czarneckid
81
+ jbarnette
82
+ watsonian
83
+ Grant Hutchins
84
+ Michael Schubert
85
+ mtrudel
@@ -2,9 +2,7 @@ require 'dl/import'
2
2
 
3
3
  if RUBY_VERSION < "1.9"
4
4
  require 'dl/struct'
5
- end
6
-
7
- if RUBY_VERSION =~ /^1.9/
5
+ else
8
6
  require 'dl/types'
9
7
  require 'dl'
10
8
  end
@@ -34,9 +32,7 @@ module Net; module SSH; module Authentication
34
32
 
35
33
  dlload 'user32'
36
34
  dlload 'kernel32'
37
- end
38
-
39
- if RUBY_VERSION =~ /^1.9/
35
+ else
40
36
  extend DL::Importer
41
37
  dlload 'user32','kernel32'
42
38
  include DL::Win32Types
@@ -51,7 +51,7 @@ module Net; module SSH
51
51
  MINOR = 6
52
52
 
53
53
  # The tiny component of this version of the Net::SSH library
54
- TINY = 5
54
+ TINY = 6
55
55
 
56
56
  # The current version of the Net::SSH library as a Version instance
57
57
  CURRENT = new(MAJOR, MINOR, TINY)
@@ -5,12 +5,12 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "net-ssh"
8
- s.version = "2.6.5"
8
+ s.version = "2.6.6"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Jamis Buck", "Delano Mandelbaum"]
12
12
  s.cert_chain = ["gem-public_cert.pem"]
13
- s.date = "2013-02-06"
13
+ s.date = "2013-03-03"
14
14
  s.description = "Net::SSH: a pure-Ruby implementation of the SSH2 client protocol. It allows you to write programs that invoke and interact with processes on remote servers, via SSH2."
15
15
  s.email = "net-ssh@solutious.com"
16
16
  s.extra_rdoc_files = [
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.5
4
+ version: 2.6.6
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -38,7 +38,7 @@ cert_chain:
38
38
  MVhNUThCTTJKejBYb1BhblBlMzU0K2xXd2pwa1JLYkZvdy9aYlFIY0NMQ3Ey
39
39
  NCtONmI2ZwpkZ0tmTkR6d2lEcHFDQT09Ci0tLS0tRU5EIENFUlRJRklDQVRF
40
40
  LS0tLS0K
41
- date: 2013-02-06 00:00:00.000000000 Z
41
+ date: 2013-03-03 00:00:00.000000000 Z
42
42
  dependencies:
43
43
  - !ruby/object:Gem::Dependency
44
44
  name: test-unit
metadata.gz.sig CHANGED
Binary file