Current Path : /proc/thread-self/root/proc/thread-self/root/proc/thread-self/root/proc/self/root/proc/self/root/opt/alt/ruby21/lib64/ruby/2.1.0/rake/contrib/ |
Current File : //proc/thread-self/root/proc/thread-self/root/proc/thread-self/root/proc/self/root/proc/self/root/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