# File lib/heroku/command/base.rb, line 123
  def self.extract_description(help)
    lines = help.split("\n").map(&:strip)
    lines.shift
    lines.reject do |line|
      line =~ /^-(.+)#(.+)/
    end.join("\n").strip
  end