Method not available on this version
This method is only available on newer versions.
The first available version (v2_6_3) is shown here.
exec_command(command, args)
public
To be called from Cli class to pass the command and argument to approriate
plugin class
# File lib/bundler/plugin.rb, line 120
def exec_command(command, args)
raise UndefinedCommandError, "Command `#{command}` not found" unless command? command
load_plugin index.command_plugin(command) unless @commands.key? command
@commands[command].new.exec(command, args)
end