class Bundler::Thor

def sort_commands!(list)

commands.
Can be overridden in the subclass to change the display order of the

Sort the commands, lexicographically by default.
def sort_commands!(list)
  list.sort! { |a, b| a[0] <=> b[0] }
end