Module: Completion::Command
- Defined in:
- lib/completion/command.rb,
lib/completion/command/top.rb,
lib/completion/command/install.rb,
lib/completion/command/generate.rb,
lib/completion/command/uninstall.rb
Overview
Command-line entry points for the completion executable.
Defined Under Namespace
Classes: Generate, Install, Top, Uninstall
Class Method Summary collapse
-
.call ⇒ Object
Parse and execute the top-level completion command.
-
.complete ⇒ Object
Complete the top-level completion command.
Class Method Details
.call ⇒ Object
Parse and execute the top-level completion command.
13 14 15 |
# File 'lib/completion/command.rb', line 13 def self.call(...) Top.call(...) end |
.complete ⇒ Object
Complete the top-level completion command.
21 22 23 |
# File 'lib/completion/command.rb', line 21 def self.complete(...) Top.complete(...) end |