Class: Faststrap::InstallAction
- Inherits:
-
Object
- Object
- Faststrap::InstallAction
show all
- Defined in:
- lib/faststrap/install_action.rb
Direct Known Subclasses
Faststrap::InstallActions::BashCompletionInstallAction, Faststrap::InstallActions::CalabashBundleInstallAction, Faststrap::InstallActions::CarthageInstallAction, Faststrap::InstallActions::CocoapodsInstallAction, Faststrap::InstallActions::FastlaneInstallAction, Faststrap::InstallActions::GitInstallAction, Faststrap::InstallActions::HomebrewInstallAction, Faststrap::InstallActions::JenkinsInstallAction, Faststrap::InstallActions::RestClientInstallAction, Faststrap::InstallActions::XcodeCmdToolsInstallAction, Faststrap::InstallActions::XctoolInstallAction
Class Method Summary
collapse
Class Method Details
.cmd ⇒ Object
14
15
16
|
# File 'lib/faststrap/install_action.rb', line 14
def self.cmd
"InstallAction cmd"
end
|
.description ⇒ Object
10
11
12
|
# File 'lib/faststrap/install_action.rb', line 10
def self.description
"InstallAction description"
end
|
.index ⇒ Object
6
7
8
|
# File 'lib/faststrap/install_action.rb', line 6
def self.index
0
end
|
.name ⇒ Object
18
19
20
|
# File 'lib/faststrap/install_action.rb', line 18
def self.name
"InstallAction"
end
|
.run ⇒ Object
22
23
24
25
|
# File 'lib/faststrap/install_action.rb', line 22
def self.run
puts "Installing #{name} .."
cmd
end
|