Sha256: 498c6f2570f638d0b5330ad3497c9459228692261b4601b9eea1feb4848c17b7
Contents?: true
Size: 716 Bytes
Versions: 33
Compression:
Stored size: 716 Bytes
Contents
require './lib/net/ssh/version' begin require 'echoe' rescue LoadError abort "You'll need to have `echoe' installed to use Net::SSH's Rakefile" end version = Net::SSH::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', version) do |p| p.changelog = "CHANGELOG.rdoc" p.author = "Jamis Buck" p.email = "jamis@jamisbuck.org" p.summary = "a pure-Ruby implementation of the SSH2 client protocol" p.url = "http://net-ssh.rubyforge.org/ssh" p.need_zip = true p.include_rakefile = true p.rdoc_pattern = /^(lib|README.rdoc|CHANGELOG.rdoc|THANKS.rdoc)/ end
Version data entries
33 entries across 33 versions & 5 rubygems