class Bundler::Thor
def long_desc(long_description, options = {})
options
long description
==== Parameters
long_desc 'your very long description', wrap: false
as found in the code, use the +wrap+ option
In order to print long description verbatim, with indentation and spacing exactly
Long description is by default indented, line-wrapped and repeated whitespace merged.
Defines the long description of the next command.
def long_desc(long_description, options = {}) if options[:for] command = find_and_refresh_command(options[:for]) command.long_description = long_description if long_description else @long_desc = long_description @long_desc_wrap = options[:wrap] != false end end