class Faststrap::InstallActions::GitInstallAction
Public Class Methods
cmd()
click to toggle source
# File lib/faststrap/install_actions/git_install_action.rb, line 13 def self.cmd Faststrap::InstallActions.brew_install "git" end
description()
click to toggle source
# File lib/faststrap/install_actions/git_install_action.rb, line 10 def self.description "Install Git" end
group()
click to toggle source
# File lib/faststrap/install_actions/git_install_action.rb, line 5 def self.group Faststrap::ActionsGroup::COMAND_LINE end
installed?()
click to toggle source
# File lib/faststrap/install_actions/git_install_action.rb, line 25 def self.installed? Faststrap::InstallActions.cmd? "git" end
name()
click to toggle source
# File lib/faststrap/install_actions/git_install_action.rb, line 21 def self.name "Git" end
ucmd()
click to toggle source
# File lib/faststrap/install_actions/git_install_action.rb, line 17 def self.ucmd Faststrap::InstallActions.brew_uninstall "git" end