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