lib/simctl/device.rb in simctl-1.5.3 vs lib/simctl/device.rb in simctl-1.5.4

- old
+ new

@@ -51,9 +51,17 @@ # @return [void] def install!(path) SimCtl.install_app(self, path) end + # Uninstall an app from a device + # + # @param app_id App identifier of the app that should be uninstalled + # @return [void] + def uninstall!(app_id) + SimCtl.uninstall_app(self, app_id) + end + # Kills the device # # @return [void] def kill! SimCtl.kill_device(self)