module Bundler::Thor::Base::ClassMethods

def group(name = nil)


name
==== Parameters

that only commands from a pre-defined group will be shown. Defaults to standard.
Defines the group. This is used when thor list is invoked so you can specify
def group(name = nil)
  if name
    @group = name.to_s
  else
    @group ||= from_superclass(:group, "standard")
  end
end