PATH: //opt/alt/ruby22/lib64/ruby/2.2.0/rake/contrib
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 compositepublisher.rb
↓
X
📄 ftptools.rb
↓
X
📄 publisher.rb
↓
X
📄 rubyforgepublisher.rb
↓
X
📄 sshpublisher.rb
↓
X
📄 sys.rb
↓
X
SAVING...
BERHASIL DIUBAH!
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
SIMPAN PERUBAHAN