Sha256: c819896235fd3884a4000a195705e7b457c49c11082091e0a41ae90bf31f7f98

Contents?: true

Size: 304 Bytes

Versions: 15

Compression:

Stored size: 304 Bytes

Contents

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

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

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
simctl-1.5.1 lib/simctl/command/boot.rb
simctl-1.5.0 lib/simctl/command/boot.rb
simctl-1.4.1 lib/simctl/command/boot.rb
simctl-1.4.0 lib/simctl/command/boot.rb
simctl-1.3.1 lib/simctl/command/boot.rb
simctl-1.3.0 lib/simctl/command/boot.rb
simctl-1.2.3 lib/simctl/command/boot.rb
simctl-1.2.2 lib/simctl/command/boot.rb
simctl-1.2.1 lib/simctl/command/boot.rb
simctl-1.2.0 lib/simctl/command/boot.rb
simctl-1.1.0 lib/simctl/command/boot.rb
simctl-1.0.2 lib/simctl/command/boot.rb
simctl-1.0.1 lib/simctl/command/boot.rb
simctl-1.0.0 lib/simctl/command/boot.rb
simctl-0.2.0 lib/simctl/command/boot.rb