class R::TargetHelpAll

Public Class Methods

new() click to toggle source
Calls superclass method R::TargetHelp::new
# File lib/rub/help.rb, line 162
def initialize
        super 'help-all'
end

Public Instance Methods

build() click to toggle source
Calls superclass method R::TargetHelp#build
# File lib/rub/help.rb, line 166
def build
        super
        
        [
                'help-tag',
                'help-installed',
                'help-built',
        ].each{|t| R.get_target(t.to_sym).build }
end