Method: Aid::Script.help
- Defined in:
- lib/aid/script.rb
.help ⇒ Object
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
# File 'lib/aid/script.rb', line 22 def self.help " Help has not been implemented for \"\#{name}\". Please implement a\n help method like so:\n\n class \#{self} < Aid::Script\n def self.help\n <<-EOF\n My awesome help message here.\n This will be so useful for people.\n EOF\n end\n end\n HELP\nend\n" |