Module: Completion::Command

Defined in:
lib/completion/command.rb,
lib/completion/command/top.rb,
lib/completion/command/install.rb,
lib/completion/command/generate.rb

Overview

Command-line entry points for the completion executable.

Defined Under Namespace

Classes: Generate, Install, Top

Class Method Summary collapse

Class Method Details

.callObject

Parse and execute the top-level completion command.



13
14
15
# File 'lib/completion/command.rb', line 13

def self.call(...)
	Top.call(...)
end

.completeObject

Complete the top-level completion command.



21
22
23
# File 'lib/completion/command.rb', line 21

def self.complete(...)
	Top.complete(...)
end