Class: Faststrap::InstallActions::CocoapodsInstallAction
- Inherits:
-
Faststrap::InstallAction
- Object
- Faststrap::InstallAction
- Faststrap::InstallActions::CocoapodsInstallAction
- Defined in:
- lib/faststrap/install_actions/cocoapods_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
13 14 15 16 |
# File 'lib/faststrap/install_actions/cocoapods_install_action.rb', line 13 def self.cmd Faststrap::InstallActions.gem_install "cocoapods" system 'pod setup' end |
.description ⇒ Object
10 11 12 |
# File 'lib/faststrap/install_actions/cocoapods_install_action.rb', line 10 def self.description "Install Cocoapods" end |
.group ⇒ Object
5 6 7 |
# File 'lib/faststrap/install_actions/cocoapods_install_action.rb', line 5 def self.group Faststrap::ActionsGroup::INSTALLERS end |
.installed? ⇒ Boolean
26 27 28 |
# File 'lib/faststrap/install_actions/cocoapods_install_action.rb', line 26 def self.installed? Faststrap::InstallActions.cmd? "cocoapods" end |
.name ⇒ Object
22 23 24 |
# File 'lib/faststrap/install_actions/cocoapods_install_action.rb', line 22 def self.name "Cocoapods" end |
.ucmd ⇒ Object
18 19 20 |
# File 'lib/faststrap/install_actions/cocoapods_install_action.rb', line 18 def self.ucmd Faststrap::InstallActions.gem_uninstall "cocoapods" end |