module Bundler::Thor::Base::ClassMethods

def all_commands


objects as values.
OrderedHash:: An ordered hash with commands names as keys and Bundler::Thor::Command
==== Returns

Returns the commands for this Bundler::Thor class and all subclasses.
def all_commands
  @all_commands ||= from_superclass(:all_commands, Bundler::Thor::CoreExt::OrderedHash.new)
  @all_commands.merge(commands)
end