class R::TargetHelpHelp

Public Class Methods

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

Public Instance Methods

build() click to toggle source
Calls superclass method R::TargetHelp#build
# File lib/rub/help.rb, line 95
                def build
                        super
                        
                        puts <<'EOS'
Help:
  Just displaying tags.  If you want to see more see:
    :help-tag
    :help-installed
    :help-built
    :help-all
EOS
                        R.get_target('help-tag'.to_sym).build
                end