Class: R::TargetHelpAll

Inherits:
TargetHelp show all
Includes:
Singleton
Defined in:
lib/rub/help.rb

Instance Attribute Summary

Attributes inherited from C::TargetTag

#description, #input, #output, #tag

Instance Method Summary collapse

Methods inherited from TargetHelp

#gen_help, #print_target, #print_targets

Methods inherited from C::TargetTag

#require

Methods inherited from Target

#clean?, #description, #hash_input, #hash_output, #hash_outputs, #hash_self, #input, #output, #register

Constructor Details

#initializeTargetHelpAll

Returns a new instance of TargetHelpAll.



162
163
164
# File 'lib/rub/help.rb', line 162

def initialize
	super 'help-all'
end

Instance Method Details

#buildObject



166
167
168
169
170
171
172
173
174
# 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