Sha256: f67bd457e5945031198352fcbac77884b1d90a18f2e6f80c7c067a8c71bd4117

Contents?: true

Size: 891 Bytes

Versions: 1

Compression:

Stored size: 891 Bytes

Contents

module SimCtl
  class Command
    module Warmup
      # Warms up a device and waits for it to be ready
      #
      # @param devicetype [String] device type string
      # @param runtime [String] runtime string
      # @param timeout [Integer] timeout in seconds to wait until device is ready
      # @return [SimCtl::Device]
      def warmup(devicetype, runtime, timeout = 120)
        devicetype = devicetype(name: devicetype) unless devicetype.is_a?(DeviceType)
        runtime = runtime(name: runtime) unless runtime.is_a?(Runtime)
        device = device(runtime: runtime, devicetype: devicetype)
        raise DeviceNotFound, "Could not find device with type '#{devicetype.name}' and runtime '#{runtime.name}'" if device.nil?
        device.boot if device.state != :booted
        device.wait(timeout) { |d| d.state == :booted && d.ready? }
        device
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
simctl-1.6.10 lib/simctl/command/warmup.rb