Sha256: 8075a5b6c533bf26ddc56f72aef52e916119c22574df9f36f4152f8baad166b4
Contents?: true
Size: 1016 Bytes
Versions: 3
Compression:
Stored size: 1016 Bytes
Contents
module SimCtl class Command module Reset # Kill, shutdown, delete and create a device # # @param name [String] name of the new device # @param device_type [SimCtl::DeviceType] device type of the new device # @param runtime [SimCtl::Runtime] runtime of the new device # @return [SimCtl::Device] the device that was created # @yield [exception] an exception that might happen during shutdown/delete of the old device def reset_device(name, device_type, runtime) begin list_devices.where(name: name, os: runtime.name).each do |device| device.kill device.shutdown if device.state != :shutdown device.wait {|d| d.state == :shutdown} device.delete end rescue Exception => exception yield exception if block_given? end device = create_device name, device_type, runtime device.wait {|d| d.state == :shutdown} device end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
simctl-1.6.2 | lib/simctl/command/reset.rb |
simctl-1.6.1 | lib/simctl/command/reset.rb |
simctl-1.6.0 | lib/simctl/command/reset.rb |