Class: Faststrap::InstallActions::CarthageInstallAction
- Inherits:
-
Faststrap::InstallAction
- Object
- Faststrap::InstallAction
- Faststrap::InstallActions::CarthageInstallAction
- Defined in:
- lib/faststrap/install_actions/carthage_install_action.rb
Class Method Summary collapse
- .cmd ⇒ Object
- .description ⇒ Object
- .group ⇒ Object
- .installed? ⇒ Boolean
- .name ⇒ Object
- .ucmd ⇒ Object
Methods inherited from Faststrap::InstallAction
Class Method Details
.cmd ⇒ Object
12 13 14 |
# File 'lib/faststrap/install_actions/carthage_install_action.rb', line 12 def self.cmd Faststrap::InstallActions.brew_install "carthage" end |
.description ⇒ Object
9 10 11 |
# File 'lib/faststrap/install_actions/carthage_install_action.rb', line 9 def self.description "Install Carthage" end |
.group ⇒ Object
5 6 7 |
# File 'lib/faststrap/install_actions/carthage_install_action.rb', line 5 def self.group Faststrap::ActionsGroup::INSTALLERS end |
.installed? ⇒ Boolean
24 25 26 |
# File 'lib/faststrap/install_actions/carthage_install_action.rb', line 24 def self.installed? Faststrap::InstallActions.cmd? "carthage" end |
.name ⇒ Object
20 21 22 |
# File 'lib/faststrap/install_actions/carthage_install_action.rb', line 20 def self.name "Carthage" end |
.ucmd ⇒ Object
16 17 18 |
# File 'lib/faststrap/install_actions/carthage_install_action.rb', line 16 def self.ucmd Faststrap::InstallActions.brew_uninstall "carthage" end |