AlkantarClanX12

Your IP : 3.142.255.23


Current Path : /opt/alt/ruby21/lib64/ruby/2.1.0/rake/contrib/
Upload File :
Current File : //opt/alt/ruby21/lib64/ruby/2.1.0/rake/contrib/rubyforgepublisher.rb

require 'rake/contrib/sshpublisher'

module Rake

  class RubyForgePublisher < SshDirPublisher
    attr_reader :project, :proj_id, :user

    def initialize(projname, user)
      super(
        "#{user}@rubyforge.org",
        "/var/www/gforge-projects/#{projname}",
        "html")
    end
  end

end