Parent

Methods

CompositePublisher

Manage several publishers as a single entity.

Public Class Methods

new() click to toggle source
    # File lib/rake/contrib/publisher.rb, line 21
21:   def initialize
22:     @publishers = []
23:   end

Public Instance Methods

add(pub) click to toggle source

Add a publisher to the composite.

    # File lib/rake/contrib/publisher.rb, line 26
26:   def add(pub)
27:     @publishers << pub
28:   end
upload() click to toggle source

Upload all the individual publishers.

    # File lib/rake/contrib/publisher.rb, line 31
31:   def upload
32:     @publishers.each { |p| p.upload }
33:   end

Disabled; run with --debug to generate this.

[Validate]

Generated with the Darkfish Rdoc Generator 1.1.6.