summaryrefslogtreecommitdiff
path: root/Rakefile
blob: 9a6b76e40cec8c90a2a11e1275bac975e38f2b3b (plain)
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
require './lib/net/ssh/gateway'

begin
  require 'echoe'
rescue LoadError
  abort "You'll need to have `echoe' installed to use Net::SSH::Gateway's Rakefile"
end

version = Net::SSH::Gateway::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-gateway', version) do |p|
  p.changelog        = "CHANGELOG.rdoc"

  p.author           = "Jamis Buck"
  p.email            = "net-ssh-gateway@solutious.com"
  p.summary          = "A simple library to assist in establishing tunneled Net::SSH connections"
  p.url              = "http://net-ssh.rubyforge.org/gateway"

  p.dependencies     = ["net-ssh >=1.99.1"]

  p.need_zip         = true
  p.include_rakefile = true

  p.rdoc_pattern     = /^(lib|README.rdoc|CHANGELOG.rdoc)/
end