Method: GLI::App#program_long_desc
- Defined in:
- lib/gli/app.rb
#program_long_desc(description = nil) ⇒ Object
Provide a longer description of the program. This can be as long as needed, and use double-newlines for paragraphs. This will show up in the help output.
- description
-
A String for the description
58 59 60 61 62 63 |
# File 'lib/gli/app.rb', line 58 def program_long_desc(description=nil) if description @program_long_desc = description end @program_long_desc end |