class Thor

def subcommand_help(cmd)

def subcommand_help(cmd)
  desc "help [COMMAND]", "Describe subcommands or one specific subcommand"
  class_eval <<-RUBY
    def help(task = nil, subcommand = true); super; end
  RUBY
end