// SYSTEM PANEL //
[ROOT]
/
opt
/
alt
/
ruby22
/
lib64
/
ruby
/
2.2.0
/
rake
/
contrib
[ PARENT ]
EDIT :: rubyforgepublisher.rb
# TODO: Remove in Rake 11 require 'rake/contrib/sshpublisher' module Rake class RubyForgePublisher < SshDirPublisher # :nodoc: all attr_reader :project, :proj_id, :user def initialize(projname, user) super( "#{user}@rubyforge.org", "/var/www/gforge-projects/#{projname}", "html") end end end
SAVE
CANCEL