public
Description: Pure Ruby implementation of the SCP protocol
Homepage: http://rubyforge.org/projects/net-ssh
Clone URL: git://github.com/jamis/net-scp.git
Search Repo:
jamis (author)
Sun May 25 19:55:44 -0700 2008
commit  37e84fb1ae9d3667dd3d61b0e5bf8968e28e24d7
tree    dd7fa9606e4fd248e6c735ea5f440fc9ef17bed1
parent  6c9d479a8d3aeeea7f588c2004f950575dc3a4fc
net-scp / Rakefile
100644 30 lines (23 sloc) 0.816 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
30
$LOAD_PATH.unshift "../net-ssh/lib"
require './lib/net/scp/version'
 
begin
  require 'echoe'
rescue LoadError
  abort "You'll need to have `echoe' installed to use Net::SCP's Rakefile"
end
 
version = Net::SCP::Version::STRING.dup
if ENV['SNAPSHOT'].to_i == 1
  version << "." << Time.now.utc.strftime("%Y%m%d%H%M%S")
end
 
Echoe.new('net-scp', version) do |p|
  p.project = "net-ssh"
  p.changelog = "CHANGELOG.rdoc"
 
  p.author = "Jamis Buck"
  p.email = "jamis@jamisbuck.org"
  p.summary = "A pure Ruby implementation of the SCP client protocol"
  p.url = "http://net-ssh.rubyforge.org/scp"
 
  p.dependencies = ["net-ssh >=1.99.1"]
 
  p.need_zip = true
  p.include_rakefile = true
 
  p.rdoc_pattern = /^(lib|README.rdoc|CHANGELOG.rdoc)/
end