Parent

Methods

Rake::CompositePublisher

Manage several publishers as a single entity.

Public Class Methods

new() click to toggle source
   # File lib/rake/contrib/compositepublisher.rb, line 7
7:     def initialize
8:       @publishers = []
9:     end

Public Instance Methods

add(pub) click to toggle source

Add a publisher to the composite.

    # File lib/rake/contrib/compositepublisher.rb, line 12
12:     def add(pub)
13:       @publishers << pub
14:     end
upload() click to toggle source

Upload all the individual publishers.

    # File lib/rake/contrib/compositepublisher.rb, line 17
17:     def upload
18:       @publishers.each { |p| p.upload }
19:     end

Disabled; run with --debug to generate this.

[Validate]

Generated with the Darkfish Rdoc Generator 1.1.6.