class Bundler::Thor::Group

def desc(description = nil)


description:: The description for this Bundler::Thor::Group.
==== Parameters

in the superclass.
exists, tries to find the USAGE one folder above it, otherwise searches
The description for this Bundler::Thor::Group. If none is provided, but a source root
def desc(description = nil)
  if description
    @desc = description
  else
    @desc ||= from_superclass(:desc, nil)
  end
end