module SubPod::Delegate

Public Instance Methods

install(update_mode = false) click to toggle source
# File lib/subpod.rb, line 10
def install(update_mode = false)
  cfg = Pod::Config.instance
  cfg.podfile or fail Pod::Informative, "No `Podfile' found in the current working directory."
  installer = Installer.new(cfg.sandbox, cfg.podfile, cfg.lockfile)
  installer.update_mode = update_mode
  installer.install!
end