Class: Pod::Command::Binary::Install

Inherits:
Pod::Command::Binary show all
Includes:
ProjectDirectory, RepoUpdate
Defined in:
lib/cocoapods-aries-binary/command/install.rb

Instance Method Summary collapse

Methods inherited from Pod::Command::Binary

#verify_binaryfile_exists!

Instance Method Details

#runObject



14
15
16
17
18
19
20
21
22
23
24
# File 'lib/cocoapods-aries-binary/command/install.rb', line 14

def run
  require 'cocoapods-aries-binary/spec_repo/spec_repo'
  verify_podfile_exists!
  verify_binaryfile_exists!
  installer = installer_for_config
  installer.repo_update = repo_update?(:default => false)
  installer.update = false
  installer.deployment = false
  installer.clean_install = false
  installer.install!
end