class Faststrap::InstallActions::BashCompletionInstallAction
Public Class Methods
cmd()
click to toggle source
# File lib/faststrap/install_actions/bash_completion_install_action.rb, line 13 def self.cmd Faststrap::InstallActions.brew_install "bash-completion" end
description()
click to toggle source
# File lib/faststrap/install_actions/bash_completion_install_action.rb, line 9 def self.description "Install bash-completion cmd using homebrew" end
group()
click to toggle source
# File lib/faststrap/install_actions/bash_completion_install_action.rb, line 5 def self.group Faststrap::ActionsGroup::COMAND_LINE end
installed?()
click to toggle source
# File lib/faststrap/install_actions/bash_completion_install_action.rb, line 25 def self.installed? Faststrap::InstallActions.cmd? "bash-completion" end
name()
click to toggle source
# File lib/faststrap/install_actions/bash_completion_install_action.rb, line 21 def self.name "bash-completion" end
ucmd()
click to toggle source
# File lib/faststrap/install_actions/bash_completion_install_action.rb, line 17 def self.ucmd Faststrap::InstallActions.brew_uninstall "bash-completion" end