net-scp 1.0.4 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data.tar.gz.sig +0 -0
- data/{CHANGELOG.rdoc → CHANGES.txt} +5 -0
- data/LICENSE.txt +19 -0
- data/README.rdoc +21 -1
- data/Rakefile +50 -73
- data/gem-public_cert.pem +20 -0
- data/lib/net/scp/version.rb +2 -2
- data/net-scp.gemspec +54 -20
- data/test/common.rb +1 -1
- metadata +111 -81
- metadata.gz.sig +2 -0
data.tar.gz.sig
ADDED
Binary file
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
Copyright © 2008 Jamis Buck
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
4
|
+
this software and associated documentation files (the ‘Software’), to deal in
|
5
|
+
the Software without restriction, including without limitation the rights to
|
6
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
7
|
+
of the Software, and to permit persons to whom the Software is furnished to do
|
8
|
+
so, subject to the following conditions:
|
9
|
+
|
10
|
+
The above copyright notice and this permission notice shall be included in all
|
11
|
+
copies or substantial portions of the Software.
|
12
|
+
|
13
|
+
THE SOFTWARE IS PROVIDED ‘AS IS’, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
14
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
15
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
16
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
17
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
18
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
19
|
+
SOFTWARE.
|
data/README.rdoc
CHANGED
@@ -1,6 +1,12 @@
|
|
1
1
|
= Net::SCP
|
2
2
|
|
3
|
-
* http://github.com/net-
|
3
|
+
* Docs: http://net-ssh.github.com/net-scp
|
4
|
+
* Issues: https://github.com/net-ssh/net-scp/issues
|
5
|
+
* Codes: https://github.com/net-ssh/net-scp
|
6
|
+
* Email: net-ssh@solutious.com
|
7
|
+
|
8
|
+
<em>As of v1.0.5, all gem releases are signed. See INSTALL.</em>
|
9
|
+
|
4
10
|
|
5
11
|
== DESCRIPTION:
|
6
12
|
|
@@ -65,6 +71,20 @@ If you wish to run the tests, you'll also need:
|
|
65
71
|
|
66
72
|
* gem install net-scp (might need sudo privileges)
|
67
73
|
|
74
|
+
However, in order to be sure the code you're installing hasn't been tampered with, it's recommended that you verify the signiture[http://docs.rubygems.org/read/chapter/21]. To do this, you need to add my public key as a trusted certificate (you only need to do this once):
|
75
|
+
|
76
|
+
# Add the public key as a trusted certificate
|
77
|
+
# (You only need to do this once)
|
78
|
+
$ curl -O https://raw.github.com/net-ssh/net-ssh/master/gem-public_cert.pem
|
79
|
+
$ gem cert --add gem-public_cert.pem
|
80
|
+
|
81
|
+
Then, when install the gem, do so with high security:
|
82
|
+
|
83
|
+
$ gem install net-scp -P HighSecurity
|
84
|
+
|
85
|
+
If you don't add the public key, you'll see an error like "Couldn't verify data signature". If you're still having trouble let me know and I'll give you a hand.
|
86
|
+
|
87
|
+
|
68
88
|
Or, you can do it the hard way (without Rubygems):
|
69
89
|
|
70
90
|
* tar xzf net-scp-*.tgz
|
data/Rakefile
CHANGED
@@ -1,83 +1,60 @@
|
|
1
|
-
require
|
2
|
-
require
|
3
|
-
require
|
4
|
-
require
|
5
|
-
include FileUtils
|
6
|
-
|
7
|
-
begin
|
8
|
-
require 'hanna/rdoctask'
|
9
|
-
rescue LoadError
|
10
|
-
require 'rake/rdoctask'
|
11
|
-
end
|
12
|
-
|
13
|
-
task :default => :package
|
14
|
-
|
15
|
-
# CONFIG =============================================================
|
16
|
-
|
17
|
-
# Change the following according to your needs
|
18
|
-
README = "README.rdoc"
|
19
|
-
CHANGES = "CHANGELOG.rdoc"
|
20
|
-
|
21
|
-
# Files and directories to be deleted when you run "rake clean"
|
22
|
-
CLEAN.include [ 'pkg', '*.gem', '.config', 'doc']
|
23
|
-
|
24
|
-
name = 'net-scp'
|
25
|
-
|
26
|
-
load "#{name}.gemspec"
|
27
|
-
version = @spec.version
|
28
|
-
|
29
|
-
# That's it! The following defaults should allow you to get started
|
30
|
-
# on other things.
|
31
|
-
|
32
|
-
|
33
|
-
# TESTS/SPECS =========================================================
|
34
|
-
|
1
|
+
require "rubygems"
|
2
|
+
require "rake"
|
3
|
+
require "rake/clean"
|
4
|
+
require "rdoc/task"
|
35
5
|
|
6
|
+
task :default => ["build"]
|
7
|
+
CLEAN.include [ 'pkg', 'rdoc' ]
|
8
|
+
name = "net-scp"
|
36
9
|
|
37
|
-
|
10
|
+
$:.unshift File.join(File.dirname(__FILE__), 'lib')
|
11
|
+
require "net/scp/version"
|
12
|
+
version = Net::SCP::Version::STRING.dup
|
38
13
|
|
39
|
-
|
40
|
-
|
14
|
+
begin
|
15
|
+
require "jeweler"
|
16
|
+
Jeweler::Tasks.new do |s|
|
17
|
+
s.version = version
|
18
|
+
s.name = name
|
19
|
+
s.rubyforge_project = s.name
|
20
|
+
s.summary = "A pure Ruby implementation of the SCP client protocol"
|
21
|
+
s.description = s.summary
|
22
|
+
s.email = "net-ssh@solutious.com"
|
23
|
+
s.homepage = "https://github.com/net-ssh/net-scp"
|
24
|
+
s.authors = ["Jamis Buck", "Delano Mandelbaum"]
|
25
|
+
|
26
|
+
s.add_dependency 'net-ssh', ">=2.6.5"
|
27
|
+
|
28
|
+
s.add_development_dependency 'test-unit'
|
29
|
+
s.add_development_dependency 'mocha'
|
30
|
+
|
31
|
+
s.license = "MIT"
|
32
|
+
|
33
|
+
s.signing_key = File.join('/mnt/gem/', 'gem-private_key.pem')
|
34
|
+
s.cert_chain = ['gem-public_cert.pem']
|
35
|
+
end
|
36
|
+
Jeweler::GemcutterTasks.new
|
37
|
+
rescue LoadError
|
38
|
+
puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
|
41
39
|
end
|
42
40
|
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
sh %{sudo gem install pkg/#{name}-#{version}.gem}
|
47
|
-
end
|
48
|
-
task :uninstall => [ :clean ] do
|
49
|
-
sh %{sudo gem uninstall #{name}}
|
41
|
+
require 'rake/testtask'
|
42
|
+
Rake::TestTask.new do |t|
|
43
|
+
t.libs = ["lib", "test"]
|
50
44
|
end
|
51
45
|
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
rubyforge add_release -o Any -a #{CHANGES} -f -n #{README} #{name} #{name} #{@spec.version} pkg/#{name}-#{@spec.version}.gem &&
|
65
|
-
rubyforge add_file -o Any -a #{CHANGES} -f -n #{README} #{name} #{name} #{@spec.version} pkg/#{name}-#{@spec.version}.tgz
|
66
|
-
end
|
67
|
-
end
|
46
|
+
extra_files = %w[LICENSE.txt THANKS.txt CHANGES.txt ]
|
47
|
+
RDoc::Task.new do |rdoc|
|
48
|
+
rdoc.rdoc_dir = "rdoc"
|
49
|
+
rdoc.title = "#{name} #{version}"
|
50
|
+
rdoc.generator = 'hanna' # gem install hanna-nouveau
|
51
|
+
rdoc.main = 'README.rdoc'
|
52
|
+
rdoc.rdoc_files.include("README*")
|
53
|
+
rdoc.rdoc_files.include("bin/*.rb")
|
54
|
+
rdoc.rdoc_files.include("lib/**/*.rb")
|
55
|
+
extra_files.each { |file|
|
56
|
+
rdoc.rdoc_files.include(file) if File.exists?(file)
|
57
|
+
}
|
68
58
|
end
|
69
59
|
|
70
60
|
|
71
|
-
|
72
|
-
# RUBY DOCS TASK ==================================
|
73
|
-
|
74
|
-
Rake::RDocTask.new do |t|
|
75
|
-
t.rdoc_dir = 'doc'
|
76
|
-
t.title = @spec.summary
|
77
|
-
t.options << '--line-numbers' << '-A cattr_accessor=object'
|
78
|
-
t.options << '--charset' << 'utf-8'
|
79
|
-
t.rdoc_files.include(README)
|
80
|
-
t.rdoc_files.include(CHANGES)
|
81
|
-
t.rdoc_files.include('lib/**/*.rb')
|
82
|
-
end
|
83
|
-
|
data/gem-public_cert.pem
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
-----BEGIN CERTIFICATE-----
|
2
|
+
MIIDNjCCAh6gAwIBAgIBADANBgkqhkiG9w0BAQUFADBBMQ8wDQYDVQQDDAZkZWxh
|
3
|
+
bm8xGTAXBgoJkiaJk/IsZAEZFglzb2x1dGlvdXMxEzARBgoJkiaJk/IsZAEZFgNj
|
4
|
+
b20wHhcNMTMwMjA2MTE1NzQ1WhcNMTQwMjA2MTE1NzQ1WjBBMQ8wDQYDVQQDDAZk
|
5
|
+
ZWxhbm8xGTAXBgoJkiaJk/IsZAEZFglzb2x1dGlvdXMxEzARBgoJkiaJk/IsZAEZ
|
6
|
+
FgNjb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDg1hMtl0XsMuUK
|
7
|
+
AKTgYWv3gjj7vuEsE2EjT+vyBg8/LpqVVwZziiaebJT9IZiQ+sCFqbiakj0b53pI
|
8
|
+
hg1yOaBEmH6/W0L7rwzqaRV9sW1eJs9JxFYQCnd67zUnzj8nnRlOjG+hhIG+Vsij
|
9
|
+
npsGbt28pefuNZJjO5q2clAlfSniIIHfIsU7/StEYu6FUGOjnwryZ0r5yJlr9RrE
|
10
|
+
Gs+q0DW8QnZ9UpAfuDFQZuIqeKQFFLE7nMmCGaA+0BN1nLl3fVHNbLHq7Avk8+Z+
|
11
|
+
ZuuvkdscbHlO/l+3xCNQ5nUnHwq0ADAbMLOlmiYYzqXoWLjmeI6me/clktJCfN2R
|
12
|
+
oZG3UQvvAgMBAAGjOTA3MAkGA1UdEwQCMAAwHQYDVR0OBBYEFMSJOEtHzE4l0azv
|
13
|
+
M0JK0kKNToK1MAsGA1UdDwQEAwIEsDANBgkqhkiG9w0BAQUFAAOCAQEAtOdE73qx
|
14
|
+
OH2ydi9oT2hS5f9G0y1Z70Tlwh+VGExyfxzVE9XwC+iPpJxNraiHYgF/9/oky7ZZ
|
15
|
+
R9q0/tJneuhAenZdiQkX7oi4O3v9wRS6YHoWBxMPFKVRLNTzvVJsbmfpCAlp5/5g
|
16
|
+
ps4wQFy5mibElGVlOobf/ghqZ25HS9J6kd0/C/ry0AUtTogsL7TxGwT4kbCx63ub
|
17
|
+
3vywEEhsJUzfd97GCABmtQfRTldX/j7F1z/5wd8p+hfdox1iibds9ZtfaZA3KzKn
|
18
|
+
kchWN9B6zg9r1XMQ8BM2Jz0XoPanPe354+lWwjpkRKbFow/ZbQHcCLCq24+N6b6g
|
19
|
+
dgKfNDzwiDpqCA==
|
20
|
+
-----END CERTIFICATE-----
|
data/lib/net/scp/version.rb
CHANGED
@@ -5,8 +5,8 @@ module Net; class SCP
|
|
5
5
|
# Describes the current version of the Net::SCP library.
|
6
6
|
class Version < Net::SSH::Version
|
7
7
|
MAJOR = 1
|
8
|
-
MINOR =
|
9
|
-
TINY =
|
8
|
+
MINOR = 1
|
9
|
+
TINY = 0
|
10
10
|
|
11
11
|
# The current version, as a Version instance
|
12
12
|
CURRENT = new(MAJOR, MINOR, TINY)
|
data/net-scp.gemspec
CHANGED
@@ -1,34 +1,68 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
1
4
|
# -*- encoding: utf-8 -*-
|
2
5
|
|
3
|
-
|
4
|
-
s.name =
|
5
|
-
s.version = "1.0
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = "net-scp"
|
8
|
+
s.version = "1.1.0"
|
6
9
|
|
7
|
-
s.required_rubygems_version = Gem::Requirement.new(">=
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
8
11
|
s.authors = ["Jamis Buck", "Delano Mandelbaum"]
|
9
|
-
s.
|
10
|
-
s.
|
11
|
-
s.
|
12
|
-
s.
|
13
|
-
s.
|
14
|
-
|
15
|
-
|
12
|
+
s.cert_chain = ["gem-public_cert.pem"]
|
13
|
+
s.date = "2013-02-06"
|
14
|
+
s.description = "A pure Ruby implementation of the SCP client protocol"
|
15
|
+
s.email = "net-ssh@solutious.com"
|
16
|
+
s.extra_rdoc_files = [
|
17
|
+
"LICENSE.txt",
|
18
|
+
"README.rdoc"
|
19
|
+
]
|
20
|
+
s.files = [
|
21
|
+
"CHANGES.txt",
|
22
|
+
"LICENSE.txt",
|
23
|
+
"Manifest",
|
24
|
+
"README.rdoc",
|
25
|
+
"Rakefile",
|
26
|
+
"gem-public_cert.pem",
|
27
|
+
"lib/net/scp.rb",
|
28
|
+
"lib/net/scp/download.rb",
|
29
|
+
"lib/net/scp/errors.rb",
|
30
|
+
"lib/net/scp/upload.rb",
|
31
|
+
"lib/net/scp/version.rb",
|
32
|
+
"lib/uri/open-scp.rb",
|
33
|
+
"lib/uri/scp.rb",
|
34
|
+
"net-scp.gemspec",
|
35
|
+
"setup.rb",
|
36
|
+
"test/common.rb",
|
37
|
+
"test/test_all.rb",
|
38
|
+
"test/test_download.rb",
|
39
|
+
"test/test_scp.rb",
|
40
|
+
"test/test_upload.rb"
|
41
|
+
]
|
42
|
+
s.homepage = "https://github.com/net-ssh/net-scp"
|
43
|
+
s.licenses = ["MIT"]
|
16
44
|
s.require_paths = ["lib"]
|
17
|
-
s.rubyforge_project =
|
18
|
-
s.rubygems_version =
|
19
|
-
s.
|
20
|
-
s.
|
45
|
+
s.rubyforge_project = "net-scp"
|
46
|
+
s.rubygems_version = "1.8.25"
|
47
|
+
s.signing_key = "/mnt/gem/gem-private_key.pem"
|
48
|
+
s.summary = "A pure Ruby implementation of the SCP client protocol"
|
21
49
|
|
22
50
|
if s.respond_to? :specification_version then
|
23
|
-
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
24
51
|
s.specification_version = 3
|
25
52
|
|
26
|
-
if Gem::Version.new(Gem::
|
27
|
-
s.add_runtime_dependency(%q<net-ssh>, [">=
|
53
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
54
|
+
s.add_runtime_dependency(%q<net-ssh>, [">= 2.6.5"])
|
55
|
+
s.add_development_dependency(%q<test-unit>, [">= 0"])
|
56
|
+
s.add_development_dependency(%q<mocha>, [">= 0"])
|
28
57
|
else
|
29
|
-
s.add_dependency(%q<net-ssh>, [">=
|
58
|
+
s.add_dependency(%q<net-ssh>, [">= 2.6.5"])
|
59
|
+
s.add_dependency(%q<test-unit>, [">= 0"])
|
60
|
+
s.add_dependency(%q<mocha>, [">= 0"])
|
30
61
|
end
|
31
62
|
else
|
32
|
-
s.add_dependency(%q<net-ssh>, [">=
|
63
|
+
s.add_dependency(%q<net-ssh>, [">= 2.6.5"])
|
64
|
+
s.add_dependency(%q<test-unit>, [">= 0"])
|
65
|
+
s.add_dependency(%q<mocha>, [">= 0"])
|
33
66
|
end
|
34
67
|
end
|
68
|
+
|
data/test/common.rb
CHANGED
metadata
CHANGED
@@ -1,114 +1,144 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: net-scp
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
prerelease:
|
6
|
-
segments:
|
7
|
-
- 1
|
8
|
-
- 0
|
9
|
-
- 4
|
10
|
-
version: 1.0.4
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.1.0
|
5
|
+
prerelease:
|
11
6
|
platform: ruby
|
12
|
-
authors:
|
7
|
+
authors:
|
13
8
|
- Jamis Buck
|
14
9
|
- Delano Mandelbaum
|
15
10
|
autorequire:
|
16
11
|
bindir: bin
|
17
|
-
cert_chain:
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
12
|
+
cert_chain:
|
13
|
+
- !binary |-
|
14
|
+
LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUROakNDQWg2Z0F3SUJB
|
15
|
+
Z0lCQURBTkJna3Foa2lHOXcwQkFRVUZBREJCTVE4d0RRWURWUVFEREFaa1pX
|
16
|
+
eGgKYm04eEdUQVhCZ29Ka2lhSmsvSXNaQUVaRmdsemIyeDFkR2x2ZFhNeEV6
|
17
|
+
QVJCZ29Ka2lhSmsvSXNaQUVaRmdOagpiMjB3SGhjTk1UTXdNakEyTVRFMU56
|
18
|
+
UTFXaGNOTVRRd01qQTJNVEUxTnpRMVdqQkJNUTh3RFFZRFZRUUREQVprClpX
|
19
|
+
eGhibTh4R1RBWEJnb0praWFKay9Jc1pBRVpGZ2x6YjJ4MWRHbHZkWE14RXpB
|
20
|
+
UkJnb0praWFKay9Jc1pBRVoKRmdOamIyMHdnZ0VpTUEwR0NTcUdTSWIzRFFF
|
21
|
+
QkFRVUFBNElCRHdBd2dnRUtBb0lCQVFEZzFoTXRsMFhzTXVVSwpBS1RnWVd2
|
22
|
+
M2dqajd2dUVzRTJFalQrdnlCZzgvTHBxVlZ3WnppaWFlYkpUOUlaaVErc0NG
|
23
|
+
cWJpYWtqMGI1M3BJCmhnMXlPYUJFbUg2L1cwTDdyd3pxYVJWOXNXMWVKczlK
|
24
|
+
eEZZUUNuZDY3elVuemo4bm5SbE9qRytoaElHK1ZzaWoKbnBzR2J0MjhwZWZ1
|
25
|
+
TlpKak81cTJjbEFsZlNuaUlJSGZJc1U3L1N0RVl1NkZVR09qbndyeVowcjV5
|
26
|
+
SmxyOVJyRQpHcytxMERXOFFuWjlVcEFmdURGUVp1SXFlS1FGRkxFN25NbUNH
|
27
|
+
YUErMEJOMW5MbDNmVkhOYkxIcTdBdms4K1orClp1dXZrZHNjYkhsTy9sKzN4
|
28
|
+
Q05RNW5Vbkh3cTBBREFiTUxPbG1pWVl6cVhvV0xqbWVJNm1lL2Nsa3RKQ2ZO
|
29
|
+
MlIKb1pHM1VRdnZBZ01CQUFHak9UQTNNQWtHQTFVZEV3UUNNQUF3SFFZRFZS
|
30
|
+
ME9CQllFRk1TSk9FdEh6RTRsMGF6dgpNMEpLMGtLTlRvSzFNQXNHQTFVZER3
|
31
|
+
UUVBd0lFc0RBTkJna3Foa2lHOXcwQkFRVUZBQU9DQVFFQXRPZEU3M3F4Ck9I
|
32
|
+
MnlkaTlvVDJoUzVmOUcweTFaNzBUbHdoK1ZHRXh5Znh6VkU5WHdDK2lQcEp4
|
33
|
+
TnJhaUhZZ0YvOS9va3k3WloKUjlxMC90Sm5ldWhBZW5aZGlRa1g3b2k0TzN2
|
34
|
+
OXdSUzZZSG9XQnhNUEZLVlJMTlR6dlZKc2JtZnBDQWxwNS81ZwpwczR3UUZ5
|
35
|
+
NW1pYkVsR1ZsT29iZi9naHFaMjVIUzlKNmtkMC9DL3J5MEFVdFRvZ3NMN1R4
|
36
|
+
R3dUNGtiQ3g2M3ViCjN2eXdFRWhzSlV6ZmQ5N0dDQUJtdFFmUlRsZFgvajdG
|
37
|
+
MXovNXdkOHAraGZkb3gxaWliZHM5WnRmYVpBM0t6S24Ka2NoV045QjZ6Zzly
|
38
|
+
MVhNUThCTTJKejBYb1BhblBlMzU0K2xXd2pwa1JLYkZvdy9aYlFIY0NMQ3Ey
|
39
|
+
NCtONmI2ZwpkZ0tmTkR6d2lEcHFDQT09Ci0tLS0tRU5EIENFUlRJRklDQVRF
|
40
|
+
LS0tLS0K
|
41
|
+
date: 2013-02-06 00:00:00.000000000 Z
|
42
|
+
dependencies:
|
43
|
+
- !ruby/object:Gem::Dependency
|
23
44
|
name: net-ssh
|
24
|
-
|
25
|
-
requirement: &id001 !ruby/object:Gem::Requirement
|
45
|
+
requirement: !ruby/object:Gem::Requirement
|
26
46
|
none: false
|
27
|
-
requirements:
|
28
|
-
- -
|
29
|
-
- !ruby/object:Gem::Version
|
30
|
-
|
31
|
-
segments:
|
32
|
-
- 1
|
33
|
-
- 99
|
34
|
-
- 1
|
35
|
-
version: 1.99.1
|
47
|
+
requirements:
|
48
|
+
- - ! '>='
|
49
|
+
- !ruby/object:Gem::Version
|
50
|
+
version: 2.6.5
|
36
51
|
type: :runtime
|
37
|
-
|
52
|
+
prerelease: false
|
53
|
+
version_requirements: !ruby/object:Gem::Requirement
|
54
|
+
none: false
|
55
|
+
requirements:
|
56
|
+
- - ! '>='
|
57
|
+
- !ruby/object:Gem::Version
|
58
|
+
version: 2.6.5
|
59
|
+
- !ruby/object:Gem::Dependency
|
60
|
+
name: test-unit
|
61
|
+
requirement: !ruby/object:Gem::Requirement
|
62
|
+
none: false
|
63
|
+
requirements:
|
64
|
+
- - ! '>='
|
65
|
+
- !ruby/object:Gem::Version
|
66
|
+
version: '0'
|
67
|
+
type: :development
|
68
|
+
prerelease: false
|
69
|
+
version_requirements: !ruby/object:Gem::Requirement
|
70
|
+
none: false
|
71
|
+
requirements:
|
72
|
+
- - ! '>='
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
version: '0'
|
75
|
+
- !ruby/object:Gem::Dependency
|
76
|
+
name: mocha
|
77
|
+
requirement: !ruby/object:Gem::Requirement
|
78
|
+
none: false
|
79
|
+
requirements:
|
80
|
+
- - ! '>='
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
type: :development
|
84
|
+
prerelease: false
|
85
|
+
version_requirements: !ruby/object:Gem::Requirement
|
86
|
+
none: false
|
87
|
+
requirements:
|
88
|
+
- - ! '>='
|
89
|
+
- !ruby/object:Gem::Version
|
90
|
+
version: '0'
|
38
91
|
description: A pure Ruby implementation of the SCP client protocol
|
39
|
-
email: net-
|
92
|
+
email: net-ssh@solutious.com
|
40
93
|
executables: []
|
41
|
-
|
42
94
|
extensions: []
|
43
|
-
|
44
|
-
|
45
|
-
-
|
46
|
-
|
47
|
-
-
|
48
|
-
-
|
49
|
-
-
|
50
|
-
- lib/net/scp.rb
|
51
|
-
- lib/uri/open-scp.rb
|
52
|
-
- lib/uri/scp.rb
|
95
|
+
extra_rdoc_files:
|
96
|
+
- LICENSE.txt
|
97
|
+
- README.rdoc
|
98
|
+
files:
|
99
|
+
- CHANGES.txt
|
100
|
+
- LICENSE.txt
|
101
|
+
- Manifest
|
53
102
|
- README.rdoc
|
54
|
-
|
55
|
-
-
|
103
|
+
- Rakefile
|
104
|
+
- gem-public_cert.pem
|
105
|
+
- lib/net/scp.rb
|
56
106
|
- lib/net/scp/download.rb
|
57
107
|
- lib/net/scp/errors.rb
|
58
108
|
- lib/net/scp/upload.rb
|
59
109
|
- lib/net/scp/version.rb
|
60
|
-
- lib/net/scp.rb
|
61
110
|
- lib/uri/open-scp.rb
|
62
111
|
- lib/uri/scp.rb
|
63
|
-
-
|
64
|
-
- README.rdoc
|
112
|
+
- net-scp.gemspec
|
65
113
|
- setup.rb
|
66
114
|
- test/common.rb
|
67
115
|
- test/test_all.rb
|
68
116
|
- test/test_download.rb
|
69
117
|
- test/test_scp.rb
|
70
118
|
- test/test_upload.rb
|
71
|
-
-
|
72
|
-
|
73
|
-
|
74
|
-
homepage: http://net-ssh.rubyforge.org/scp
|
75
|
-
licenses: []
|
76
|
-
|
119
|
+
homepage: https://github.com/net-ssh/net-scp
|
120
|
+
licenses:
|
121
|
+
- MIT
|
77
122
|
post_install_message:
|
78
|
-
rdoc_options:
|
79
|
-
|
80
|
-
- --inline-source
|
81
|
-
- --title
|
82
|
-
- Net-scp
|
83
|
-
- --main
|
84
|
-
- README.rdoc
|
85
|
-
require_paths:
|
123
|
+
rdoc_options: []
|
124
|
+
require_paths:
|
86
125
|
- lib
|
87
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
126
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
88
127
|
none: false
|
89
|
-
requirements:
|
90
|
-
- -
|
91
|
-
- !ruby/object:Gem::Version
|
92
|
-
|
93
|
-
|
94
|
-
- 0
|
95
|
-
version: "0"
|
96
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - ! '>='
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: '0'
|
132
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
97
133
|
none: false
|
98
|
-
requirements:
|
99
|
-
- -
|
100
|
-
- !ruby/object:Gem::Version
|
101
|
-
|
102
|
-
segments:
|
103
|
-
- 1
|
104
|
-
- 2
|
105
|
-
version: "1.2"
|
134
|
+
requirements:
|
135
|
+
- - ! '>='
|
136
|
+
- !ruby/object:Gem::Version
|
137
|
+
version: '0'
|
106
138
|
requirements: []
|
107
|
-
|
108
|
-
|
109
|
-
rubygems_version: 1.3.7
|
139
|
+
rubyforge_project: net-scp
|
140
|
+
rubygems_version: 1.8.25
|
110
141
|
signing_key:
|
111
142
|
specification_version: 3
|
112
143
|
summary: A pure Ruby implementation of the SCP client protocol
|
113
|
-
test_files:
|
114
|
-
- test/test_all.rb
|
144
|
+
test_files: []
|
metadata.gz.sig
ADDED