Class: Jumpstarter::Pip::InstallPIP
- Inherits:
-
I_Instructions
- Object
- I_Instructions
- Jumpstarter::Pip::InstallPIP
- Defined in:
- lib/jumpstarter_core/pip.rb
Instance Method Summary collapse
Methods inherited from I_Instructions
#clean_value, #compose!, #error_message!, #initialize, #options, #success_message!
Constructor Details
This class inherits a constructor from Jumpstarter::I_Instructions
Instance Method Details
#crash_on_error! ⇒ Object
35 36 37 |
# File 'lib/jumpstarter_core/pip.rb', line 35 def crash_on_error!() return false end |
#run! ⇒ Object
26 27 28 29 30 31 32 33 |
# File 'lib/jumpstarter_core/pip.rb', line 26 def run!() # install pip CommandRunner.execute( command: Commands::Pip::Install, error: nil ) return true end |