class Pod::DeployInstaller

Public Instance Methods

create_analyzer() click to toggle source
# File lib/cocoapods-deploy/deploy_installer.rb, line 3
def create_analyzer
  DeployAnalyzer.new(sandbox, podfile, lockfile).tap do |analyzer|
    analyzer.allow_pre_downloads = false
  end
end
write_lockfiles() click to toggle source
# File lib/cocoapods-deploy/deploy_installer.rb, line 9
def write_lockfiles
  UI.message "- Writing Manifest in #{UI.path sandbox.manifest_path}" do
    sandbox.manifest_path.open('w') do |f|
      f.write config.lockfile_path.read
    end
  end
end