method

help

ruby latest stable - Class: Bundler::Thor

Method not available on this version

This method is only available on newer versions. The first available version (v2_6_3) is shown here.

help(command = nil, subcommand = false)
public

No documentation available.

# File lib/bundler/vendor/thor/lib/thor.rb, line 498
  def help(command = nil, subcommand = false)
    if command
      if self.class.subcommands.include? command
        self.class.subcommand_classes[command].help(shell, true)
      else
        self.class.command_help(shell, command)
      end
    else
      self.class.help(shell, subcommand)
    end
  end