Module: Boxen::Autocomplete

Defined in:
lib/boxen/autocomplete.rb

Constant Summary collapse

OPTIONS =

refresh options via: ruby -e ‘puts `boxen -h 2>/dev/null`.scan(/-++/).inspect’

["--debug", "--pretend", "--noop", "--report", "--env", "-h", "-?", "--help", "--disable-service", "--enable-service", "--restart-service", "--disable-services", "--enable-services", "--restart-services", "--list-services", "--homedir", "--logfile", "--login", "--no-fde", "--no-pull", "--no-issue", "--stealth", "--token", "--profile", "--future-parser", "--projects", "--srcdir", "--user", "--no-color"]
SERVICE_OPTIONS =
OPTIONS.select { |o| o.end_with?("-service") }
DIR_OPTIONS =
["--logfile", "--homedir"]

Class Method Summary collapse

Class Method Details

.complete(typed) ⇒ Object



11
12
13
14
15
16
17
18
19
# File 'lib/boxen/autocomplete.rb', line 11

def complete(typed)
  if part = after(typed, SERVICE_OPTIONS)
    available_services.select { |s| s.start_with?(part) }
  elsif after(typed, DIR_OPTIONS)
    []
  else
    OPTIONS.select { |o| o.start_with?(typed[/([a-z-]*)$/,1].to_s) }
  end
end