Class: Devkitkat::Main
- Inherits:
-
Object
- Object
- Devkitkat::Main
- Defined in:
- lib/devkitkat/main.rb
Instance Attribute Summary collapse
-
#command ⇒ Object
readonly
Returns the value of attribute command.
-
#config ⇒ Object
readonly
Returns the value of attribute config.
Instance Method Summary collapse
- #execute ⇒ Object
-
#initialize ⇒ Main
constructor
A new instance of Main.
Constructor Details
Instance Attribute Details
#command ⇒ Object (readonly)
Returns the value of attribute command.
3 4 5 |
# File 'lib/devkitkat/main.rb', line 3 def command @command end |
#config ⇒ Object (readonly)
Returns the value of attribute config.
3 4 5 |
# File 'lib/devkitkat/main.rb', line 3 def config @config end |
Instance Method Details
#execute ⇒ Object
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
# File 'lib/devkitkat/main.rb', line 10 def execute results = [] print_log_paths if target_services.count == 1 # If the target is only one, it could be console access (TTY) # so we can't run in parallel. results << target_services.first.execute else results = Parallel.map(target_services, progress: 'Executing', in_processes: 8) do |service| service.execute.tap do |success| raise Parallel::Kill unless success end end end terminate_process_group! unless results&.all? { |result| result == true } end |