Class: Pod::DeployInstaller
- Inherits:
-
Installer
- Object
- Installer
- Pod::DeployInstaller
- Defined in:
- lib/cocoapods-deploy/deploy_installer.rb
Instance Method Summary collapse
Instance Method Details
#create_analyzer ⇒ Object
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_lockfiles ⇒ Object
9 10 11 12 13 14 15 |
# File 'lib/cocoapods-deploy/deploy_installer.rb', line 9 def write_lockfiles UI. "- 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 |