X7ROOT File Manager
Current Path:
/opt/alt/ruby19/lib64/ruby/1.9.1/rake/contrib
opt
/
alt
/
ruby19
/
lib64
/
ruby
/
1.9.1
/
rake
/
contrib
/
ðŸ“
..
📄
compositepublisher.rb
(351 B)
📄
ftptools.rb
(3.67 KB)
📄
publisher.rb
(1.79 KB)
📄
rubyforgepublisher.rb
(302 B)
📄
sshpublisher.rb
(1.2 KB)
📄
sys.rb
(4.93 KB)
Editing: compositepublisher.rb
module Rake # Manage several publishers as a single entity. class CompositePublisher def initialize @publishers = [] end # Add a publisher to the composite. def add(pub) @publishers << pub end # Upload all the individual publishers. def upload @publishers.each { |p| p.upload } end end end
Upload File
Create Folder