module SimCtl::Command::Install

Public Instance Methods

install_app(device, path) click to toggle source

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]

# File lib/simctl/command/install.rb, line 11
def install_app(device, path)
  Executor.execute(command_for('install', device.udid, Shellwords.shellescape(path)))
end