Sha256: 6d0fd845e716a3e3a56e8689d6f1b12272c485b5b78413f4a415eebc5ba5742e

Contents?: true

Size: 501 Bytes

Versions: 31

Compression:

Stored size: 501 Bytes

Contents

#!/usr/bin/env ruby
require 'hybrid_platforms_conductor/executable'

executable = HybridPlatformsConductor::Executable.new(nodes_selection_options: false)
platforms_handler = executable.platforms_handler

executable.parse_options!

platforms_handler.known_platforms.each do |platform|
  next unless platform.respond_to?(:setup)

  executable.out "===== Setup platform #{platform.name}..."
  platform.setup
  executable.out "===== Platform #{platform.name} setup successfully."
  executable.out ''
end

Version data entries

31 entries across 31 versions & 1 rubygems

Version Path
hybrid_platforms_conductor-33.2.4 bin/setup
hybrid_platforms_conductor-33.2.3 bin/setup
hybrid_platforms_conductor-33.2.2 bin/setup
hybrid_platforms_conductor-33.2.1 bin/setup
hybrid_platforms_conductor-33.2.0 bin/setup
hybrid_platforms_conductor-33.1.1 bin/setup
hybrid_platforms_conductor-33.1.0 bin/setup
hybrid_platforms_conductor-33.0.4 bin/setup
hybrid_platforms_conductor-33.0.3 bin/setup
hybrid_platforms_conductor-33.0.2 bin/setup
hybrid_platforms_conductor-33.0.1 bin/setup