Current Path :
/
opt
/
alt
/
ruby21
/
lib64
/
ruby
/
2.1.0
/
rake
/
contrib
/
Or
Select Your Path :
Upload File :
New :
File
Dir
//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