long_desc(long_description, options = {})
public
Defines the long description of the next command.
long description
# File lib/bundler/vendor/thor/lib/thor.rb, line 71
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
end
end