Sha256: 7b915f952cbb40e335e9cdd00402950ed0f08baa48f661422bc0a9c20075a026

Contents?: true

Size: 281 Bytes

Versions: 1

Compression:

Stored size: 281 Bytes

Contents

module SimCtl
  class Command
    module Boot
      COMMAND = %w[xcrun simctl boot]

      # Boots a device
      #
      # @param device [SimCtl::Device] the device to boot
      def boot_device(device)
        Executor.execute([COMMAND, device.udid])
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
simctl-0.1.0 lib/simctl/command/boot.rb