class Faststrap::InstallActions::CocoapodsInstallAction

Public Class Methods

cmd() click to toggle source
# File lib/faststrap/install_actions/cocoapods_install_action.rb, line 13
def self.cmd
  Faststrap::InstallActions.gem_install "cocoapods"
  system 'pod setup'
end
description() click to toggle source
# File lib/faststrap/install_actions/cocoapods_install_action.rb, line 10
def self.description
  "Install Cocoapods"
end
group() click to toggle source
# File lib/faststrap/install_actions/cocoapods_install_action.rb, line 5
def self.group
  Faststrap::ActionsGroup::INSTALLERS
end
installed?() click to toggle source
# File lib/faststrap/install_actions/cocoapods_install_action.rb, line 26
def self.installed?
  Faststrap::InstallActions.cmd? "cocoapods"
end
name() click to toggle source
# File lib/faststrap/install_actions/cocoapods_install_action.rb, line 22
def self.name
  "Cocoapods"
end
ucmd() click to toggle source
# File lib/faststrap/install_actions/cocoapods_install_action.rb, line 18
def self.ucmd
  Faststrap::InstallActions.gem_uninstall "cocoapods"
end