Method not available on this version
This method is only available on newer versions.
The first available version (v2_6_3) is shown here.
command(command, cls = self)
public
The plugins should declare that they handle a command through this
helper.
@param [String] command being handled by
them @param [Class] (optional) class that handles
the command. If not
provided, the `self` class will be used.
# File lib/bundler/plugin/api.rb, line 33
def self.command(command, cls = self)
Plugin.add_command command, cls
end