public
Description: Pure Ruby implementation of an SSH (protocol 2) client
Homepage: http://rubyforge.org/projects/net-ssh
Clone URL: git://github.com/jamis/net-ssh.git
Search Repo:
echoe builds the manifest for us
jamis (author)
Sat Mar 22 20:59:38 -0700 2008
commit  3dc5a28faacdcfdffb5d1e5691582ec9675c00b9
tree    4093884e5373dd18a0c870b689f164921ea9ffe8
parent  f20f0ff56ec22b85c34541b362e5301ad8285ba6
...
1
2
3
4
5
 
6
7
8
9
10
11
12
13
14
15
16
 
 
 
 
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
 
 
 
 
 
 
 
 
 
 
 
 
35
...
 
 
 
 
 
1
2
 
 
 
 
 
 
 
 
 
 
3
4
5
6
7
8
 
 
 
 
9
10
11
12
13
 
 
 
 
 
 
 
14
15
16
17
18
19
20
21
22
23
24
25
26
0
@@ -1,36 +1,27 @@
0
-if !File.exist?('Manifest.txt') || ENV['REBUILD_MANIFEST']
0
- source_files = FileList.new do |fl|
0
- [ "lib", "test" ].each do |dir|
0
- fl.include "#{dir}/**/*"
0
- end
0
+require './lib/net/ssh/version'
0
 
0
- fl.include "History.txt", "Manifest.txt", "README.txt", "Thanks.txt"
0
- fl.include "Rakefile", "setup.rb"
0
- end
0
-
0
- File.open("Manifest.txt", "w") do |f|
0
- source_files.each do |file|
0
- next if File.directory?(file)
0
- f.puts(file)
0
- end
0
- end
0
+begin
0
+ require 'echoe'
0
+rescue LoadError
0
+ abort "You'll need to have `echoe' installed to use Net::SSH's Rakefile"
0
 end
0
 
0
-require './lib/net/ssh/version'
0
-
0
-require 'hoe'
0
-
0
 version = Net::SSH::Version::STRING.dup
0
 if ENV['SNAPSHOT'].to_i == 1
0
   version << "." << Time.now.utc.strftime("%Y%m%d%H%M%S")
0
 end
0
 
0
-Hoe.new('net-ssh', version) do |p|
0
- p.author = "Jamis Buck"
0
- p.email = "jamis@jamisbuck.org"
0
- p.summary = "a pure-Ruby implementation of the SSH2 client protocol"
0
- p.url = "http://net-ssh.rubyforge.org/ssh"
0
- p.need_zip = true
0
- p.rubyforge_name = "net-ssh"
0
+Echoe.new('net-ssh', version) do |p|
0
+ p.changelog = "CHANGELOG.rdoc"
0
+
0
+ p.author = "Jamis Buck"
0
+ p.email = "jamis@jamisbuck.org"
0
+ p.summary = "a pure-Ruby implementation of the SSH2 client protocol"
0
+ p.url = "http://net-ssh.rubyforge.org/ssh"
0
+
0
+ p.need_zip = true
0
+ p.include_rakefile = true
0
+
0
+ p.rdoc_pattern = /^(lib|README.rdoc|CHANGELOG.rdoc|THANKS.rdoc)/
0
 end

Comments

    No one has commented yet.