# File lib/heroku/command/base.rb, line 26
  def self.inherited(klass)
    return if klass == Heroku::Command::BaseWithApp

    help = extract_help_from_caller(caller.first)

    Heroku::Command.register_namespace(
      :name => klass.namespace,
      :description => help.split("\n").first
    )
  end