class Faststrap::InstallActions::FastlaneInstallAction

Public Class Methods

cmd() click to toggle source
# File lib/faststrap/install_actions/fastlane_install_action.rb, line 13
def self.cmd
  Faststrap::InstallActions.gem_install "fastlane"
end
description() click to toggle source
# File lib/faststrap/install_actions/fastlane_install_action.rb, line 10
def self.description
  "Install Fastlane"
end
group() click to toggle source
# File lib/faststrap/install_actions/fastlane_install_action.rb, line 5
def self.group
  Faststrap::ActionsGroup::CI
end
installed?() click to toggle source
# File lib/faststrap/install_actions/fastlane_install_action.rb, line 25
def self.installed?
  Faststrap::InstallActions.cmd? "fastlane"
end
name() click to toggle source
# File lib/faststrap/install_actions/fastlane_install_action.rb, line 21
def self.name
  "Fastlane"
end
ucmd() click to toggle source
# File lib/faststrap/install_actions/fastlane_install_action.rb, line 17
def self.ucmd
  Faststrap::InstallActions.gem_uninstall "fastlane"
end