public
Description: SSH connection multiplexing: execute commands simultaneously on multiple hosts via SSH
Homepage: http://rubyforge.org/projects/net-ssh
Clone URL: git://github.com/jamis/net-ssh-multi.git
jamis (author)
Sun Feb 01 19:54:41 -0800 2009
commit  c0b0a0b9a84d0e2ba58dd6f78e0d5e28900e18c4
tree    a202237605eb19dd0298eb59016f296a2f639656
parent  625ebfdb70efebc67a5f7423b1742c4daad9ae1f
net-ssh-multi / Rakefile
100644 29 lines (21 sloc) 0.811 kb
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
begin
  require 'echoe'
rescue LoadError
  abort "You'll need to have `echoe' installed to use Net::SSH::Multi's Rakefile"
end
 
require './lib/net/ssh/multi/version'
 
version = Net::SSH::Multi::Version::STRING.dup
if ENV['SNAPSHOT'].to_i == 1
  version << "." << Time.now.utc.strftime("%Y%m%d%H%M%S")
end
 
Echoe.new('net-ssh-multi', version) do |p|
  p.changelog = "CHANGELOG.rdoc"
 
  p.author = "Jamis Buck"
  p.email = "jamis@jamisbuck.org"
  p.summary = "Control multiple Net::SSH connections via a single interface"
  p.url = "http://net-ssh.rubyforge.org/multi"
 
  p.dependencies = ["net-ssh >=1.99.2", "net-ssh-gateway >=0.99.0"]
 
  p.need_zip = true
  p.include_rakefile = true
 
  p.rdoc_pattern = /^(lib|README.rdoc|CHANGELOG.rdoc)/
end