Sha256: 62a3d27349924b9d4f386be6610fc51cb05952af50c3ca258348d3939cfb2bd5
Contents?: true
Size: 445 Bytes
Versions: 11
Compression:
Stored size: 445 Bytes
Contents
require 'shellwords' module SimCtl class Command module Install # Installs an app on a device # # @param device [SimCtl::Device] the device the app should be installed on # @param path Absolute path to the app that should be installed # @return [void] def install_app(device, path) Executor.execute(command_for('install', device.udid, Shellwords.shellescape(path))) end end end end
Version data entries
11 entries across 11 versions & 1 rubygems