📁 File Manager Pro
v10.0.2 | PHP: 8.1.34
Server: LiteSpeed
2026-06-29 01:52:50
📂
/
/
opt
/
alt
/
ruby20
/
lib64
/
ruby
/
2.0.0
/
rake
/
contrib
✏️
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
💾 Save Changes
❌ Cancel