Class: Fastlane::Actions::InstallSaucectlAction
- Inherits:
-
Action
- Object
- Action
- Fastlane::Actions::InstallSaucectlAction
- Defined in:
- lib/fastlane/plugin/saucectl/actions/install_saucectl_action.rb
Class Method Summary collapse
- .authors ⇒ Object
- .category ⇒ Object
- .description ⇒ Object
- .details ⇒ Object
- .is_supported?(platform) ⇒ Boolean
- .run(param = '') ⇒ Object
Class Method Details
.authors ⇒ Object
21 22 23 |
# File 'lib/fastlane/plugin/saucectl/actions/install_saucectl_action.rb', line 21 def self. ["Ian Hamilton"] end |
.category ⇒ Object
25 26 27 |
# File 'lib/fastlane/plugin/saucectl/actions/install_saucectl_action.rb', line 25 def self.category :testing end |
.description ⇒ Object
13 14 15 |
# File 'lib/fastlane/plugin/saucectl/actions/install_saucectl_action.rb', line 13 def self.description "Installs the Sauce Labs saucectl cli binary" end |
.details ⇒ Object
17 18 19 |
# File 'lib/fastlane/plugin/saucectl/actions/install_saucectl_action.rb', line 17 def self.details "Installs the Sauce Labs saucectl cli binary" end |
.is_supported?(platform) ⇒ Boolean
29 30 31 |
# File 'lib/fastlane/plugin/saucectl/actions/install_saucectl_action.rb', line 29 def self.is_supported?(platform) [:ios, :android].include?(platform) end |