Flowdock
method

find_command_possibilities

Importance_0
v1_9_3_125 - Show latest stable - 0 notes - Class: CommandManager
find_command_possibilities(cmd_name) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/rubygems/command_manager.rb, line 162
  def find_command_possibilities(cmd_name)
    len = cmd_name.length

    command_names.select { |n| cmd_name == n[0, len] }
  end
Register or log in to add new notes.