class Faststrap::InstallActions::CalabashBundleInstallAction

Public Class Methods

cmd() click to toggle source
# File lib/faststrap/install_actions/calabash_bundle_install_action.rb, line 15
def self.cmd
  @@gems.map { |d| Faststrap::InstallActions.gem_install d }
end
description() click to toggle source
# File lib/faststrap/install_actions/calabash_bundle_install_action.rb, line 12
def self.description
  "Install Calabash Bundle[calabash-common,calabash-cucumber,cs-bdd,blabla]"
end
group() click to toggle source
# File lib/faststrap/install_actions/calabash_bundle_install_action.rb, line 8
def self.group
  Faststrap::ActionsGroup::TESTS
end
installed?() click to toggle source
# File lib/faststrap/install_actions/calabash_bundle_install_action.rb, line 28
def self.installed?
  Faststrap::InstallActions.cmd? "calabash-common"
end
name() click to toggle source
# File lib/faststrap/install_actions/calabash_bundle_install_action.rb, line 24
def self.name
  "Calabash"
end
ucmd() click to toggle source
# File lib/faststrap/install_actions/calabash_bundle_install_action.rb, line 19
def self.ucmd
  @@gems.map { |d| Faststrap::InstallActions.gem_uninstall d }
end