net-scp 1.0.4 → 1.1.0

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.
Binary file
@@ -1,3 +1,8 @@
1
+
2
+ === 1.1.0 / 06 Feb 2013
3
+
4
+ * Added public cert. All gem releases are now signed. See INSTALL in readme.
5
+
1
6
  === 1.0.4 / 16 Sep 2010
2
7
 
3
8
  * maintain filename sanitization compatibility with ruby 1.8.6 [Sung Pae, Tim Charper]
@@ -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.
@@ -1,6 +1,12 @@
1
1
  = Net::SCP
2
2
 
3
- * http://github.com/net-ssh/net-scp
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 'rubygems'
2
- require 'rake/clean'
3
- require 'rake/gempackagetask'
4
- require 'fileutils'
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
- # INSTALL =============================================================
10
+ $:.unshift File.join(File.dirname(__FILE__), 'lib')
11
+ require "net/scp/version"
12
+ version = Net::SCP::Version::STRING.dup
38
13
 
39
- Rake::GemPackageTask.new(@spec) do |p|
40
- p.need_tar = true if RUBY_PLATFORM !~ /mswin/
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
- task :release => [ :rdoc, :package ]
44
- task :build => [ :package ]
45
- task :install => [ :rdoc, :package ] do
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
- # RUBYFORGE RELEASE / PUBLISH TASKS ==================================
54
-
55
- if @spec.rubyforge_project
56
- desc 'Publish website to rubyforge'
57
- task 'publish:rdoc' => 'doc/index.html' do
58
- sh "scp -rp doc/* rubyforge.org:/var/www/gforge-projects/#{name}/ssh/v2/api/"
59
- end
60
-
61
- desc 'Public release to rubyforge'
62
- task 'publish:gem' => [:package] do |t|
63
- sh <<-end
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
-
@@ -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-----
@@ -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 = 0
9
- TINY = 4
8
+ MINOR = 1
9
+ TINY = 0
10
10
 
11
11
  # The current version, as a Version instance
12
12
  CURRENT = new(MAJOR, MINOR, TINY)
@@ -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
- @spec = Gem::Specification.new do |s|
4
- s.name = %q{net-scp}
5
- s.version = "1.0.4"
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(">= 1.2") if s.respond_to? :required_rubygems_version=
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.date = %q{2010-08-17}
10
- s.description = %q{A pure Ruby implementation of the SCP client protocol}
11
- s.email = %q{net-scp@solutious.com}
12
- s.extra_rdoc_files = ["CHANGELOG.rdoc", "lib/net/scp/download.rb", "lib/net/scp/errors.rb", "lib/net/scp/upload.rb", "lib/net/scp/version.rb", "lib/net/scp.rb", "lib/uri/open-scp.rb", "lib/uri/scp.rb", "README.rdoc"]
13
- s.files = ["CHANGELOG.rdoc", "lib/net/scp/download.rb", "lib/net/scp/errors.rb", "lib/net/scp/upload.rb", "lib/net/scp/version.rb", "lib/net/scp.rb", "lib/uri/open-scp.rb", "lib/uri/scp.rb", "Rakefile", "README.rdoc", "setup.rb", "test/common.rb", "test/test_all.rb", "test/test_download.rb", "test/test_scp.rb", "test/test_upload.rb", "Manifest", "net-scp.gemspec"]
14
- s.homepage = %q{http://net-ssh.rubyforge.org/scp}
15
- s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Net-scp", "--main", "README.rdoc"]
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 = %q{net-ssh}
18
- s.rubygems_version = %q{1.3.5}
19
- s.summary = %q{A pure Ruby implementation of the SCP client protocol}
20
- s.test_files = ["test/test_all.rb"]
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::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
27
- s.add_runtime_dependency(%q<net-ssh>, [">= 1.99.1"])
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>, [">= 1.99.1"])
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>, [">= 1.99.1"])
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
+
@@ -1,5 +1,5 @@
1
1
  require 'test/unit'
2
- require 'mocha'
2
+ require 'mocha/setup'
3
3
 
4
4
  begin
5
5
  gem 'net-ssh', ">= 2.0.0"
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
- hash: 31
5
- prerelease: false
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
- date: 2010-08-17 00:00:00 -04:00
20
- default_executable:
21
- dependencies:
22
- - !ruby/object:Gem::Dependency
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
- prerelease: false
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
- hash: 409
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
- version_requirements: *id001
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-scp@solutious.com
92
+ email: net-ssh@solutious.com
40
93
  executables: []
41
-
42
94
  extensions: []
43
-
44
- extra_rdoc_files:
45
- - CHANGELOG.rdoc
46
- - lib/net/scp/download.rb
47
- - lib/net/scp/errors.rb
48
- - lib/net/scp/upload.rb
49
- - lib/net/scp/version.rb
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
- files:
55
- - CHANGELOG.rdoc
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
- - Rakefile
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
- - Manifest
72
- - net-scp.gemspec
73
- has_rdoc: true
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
- - --line-numbers
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
- hash: 3
93
- segments:
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
- hash: 11
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
- rubyforge_project: net-ssh
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: []
@@ -0,0 +1,2 @@
1
+ ��c+Җ�g攑<��>�`�)�F���Y��q���S?_e׷5RG�Fs���.�"��+i��ַ��sj�߱�<˜�$��TL8�BոcO���cd$���=�� �Pщ��l����_���h*h�>�����Srb*�
2
+ �ۤ�i-