Class: Pod::DeployInstaller

Inherits:
Installer
  • Object
show all
Defined in:
lib/cocoapods-deploy/deploy_installer.rb

Instance Method Summary collapse

Instance Method Details

#create_analyzerObject



3
4
5
6
7
# 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_lockfilesObject



9
10
11
12
13
14
15
# 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