class Pod::Command::DyInstall

Public Class Methods

options() click to toggle source
Calls superclass method
# File lib/pod/command/dyinstall.rb, line 32
def self.options
  [
    ['--repo-update', 'Force running `pod repo update` before install'],
  ].concat(super).reject { |(name, _)| name == '--no-repo-update' }
end

Public Instance Methods

installer_for_config() click to toggle source
# File lib/pod/command/dyinstall.rb, line 46
def installer_for_config
  DyInstaller.new(config.sandbox, config.podfile, config.lockfile)
end
run() click to toggle source
# File lib/pod/command/dyinstall.rb, line 38
def run
  verify_podfile_exists!
  installer = installer_for_config
  installer.repo_update = repo_update?(:default => false)
  installer.update = false
  installer.install!
end