Sha256: 5a16eef60e19cb3a9db47e1b87c820f346e3f5527a4ff78fc52f534b0d538731

Contents?: true

Size: 824 Bytes

Versions: 3

Compression:

Stored size: 824 Bytes

Contents

$LOAD_PATH.unshift "../net-ssh/lib"
require './lib/net/sftp/version'

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

version = Net::SFTP::Version::STRING.dup
if ENV['SNAPSHOT'].to_i == 1
  version << "." << Time.now.utc.strftime("%Y%m%d%H%M%S")
end

Echoe.new('net-sftp', version) do |p|
  p.project          = "net-ssh"
  p.changelog        = "CHANGELOG.rdoc"

  p.author           = "Jamis Buck"
  p.email            = "netsftp@solutious.com"
  p.summary          = "A pure Ruby implementation of the SFTP client protocol"
  p.url              = "http://net-ssh.rubyforge.org/sftp"

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

  p.need_zip         = true
  p.include_rakefile = true

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

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
abiquo-installer-tests-20121026.1 vendor/net-sftp-2.0.5/Rakefile
abiquo-installer-tests-20121023.3 vendor/net-sftp-2.0.5/Rakefile
net-sftp-2.0.5 Rakefile